[System.Runtime.Serialization] Static writer fix.
[mono.git] / mcs / mcs / expression.cs
1 //
2 // expression.cs: Expression representation for the IL 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 Xamarin Inc.
11 //
12
13 using System;
14 using System.Collections.Generic;
15 using System.Linq;
16 using SLE = System.Linq.Expressions;
17 using System.Text;
18
19 #if STATIC
20 using MetaType = IKVM.Reflection.Type;
21 using IKVM.Reflection;
22 using IKVM.Reflection.Emit;
23 #else
24 using MetaType = System.Type;
25 using System.Reflection;
26 using System.Reflection.Emit;
27 #endif
28
29 namespace Mono.CSharp
30 {
31         //
32         // This is an user operator expression, automatically created during
33         // resolve phase
34         //
35         public class UserOperatorCall : Expression {
36                 protected readonly Arguments arguments;
37                 protected readonly MethodSpec oper;
38                 readonly Func<ResolveContext, Expression, Expression> expr_tree;
39
40                 public UserOperatorCall (MethodSpec oper, Arguments args, Func<ResolveContext, Expression, Expression> expr_tree, Location loc)
41                 {
42                         this.oper = oper;
43                         this.arguments = args;
44                         this.expr_tree = expr_tree;
45
46                         type = oper.ReturnType;
47                         eclass = ExprClass.Value;
48                         this.loc = loc;
49                 }
50
51                 public override bool ContainsEmitWithAwait ()
52                 {
53                         return arguments.ContainsEmitWithAwait ();
54                 }
55
56                 public override Expression CreateExpressionTree (ResolveContext ec)
57                 {
58                         if (expr_tree != null)
59                                 return expr_tree (ec, new TypeOfMethod (oper, loc));
60
61                         Arguments args = Arguments.CreateForExpressionTree (ec, arguments,
62                                 new NullLiteral (loc),
63                                 new TypeOfMethod (oper, loc));
64
65                         return CreateExpressionFactoryCall (ec, "Call", args);
66                 }
67
68                 protected override void CloneTo (CloneContext context, Expression target)
69                 {
70                         // Nothing to clone
71                 }
72                 
73                 protected override Expression DoResolve (ResolveContext ec)
74                 {
75                         //
76                         // We are born fully resolved
77                         //
78                         return this;
79                 }
80
81                 public override void Emit (EmitContext ec)
82                 {
83                         var call = new CallEmitter ();
84                         call.Emit (ec, oper, arguments, loc);
85                 }
86
87                 public override void FlowAnalysis (FlowAnalysisContext fc)
88                 {
89                         arguments.FlowAnalysis (fc);
90                 }
91
92                 public override SLE.Expression MakeExpression (BuilderContext ctx)
93                 {
94 #if STATIC
95                         return base.MakeExpression (ctx);
96 #else
97                         return SLE.Expression.Call ((MethodInfo) oper.GetMetaInfo (), Arguments.MakeExpression (arguments, ctx));
98 #endif
99                 }
100         }
101
102         public class ParenthesizedExpression : ShimExpression
103         {
104                 public ParenthesizedExpression (Expression expr, Location loc)
105                         : base (expr)
106                 {
107                         this.loc = loc;
108                 }
109
110                 protected override Expression DoResolve (ResolveContext rc)
111                 {
112                         Expression res = null;
113                         using (rc.With (ResolveContext.Options.DontSetConditionalAccessReceiver, false)) {
114                                 res = expr.Resolve (rc);
115                         }
116
117                         var constant = res as Constant;
118                         if (constant != null && constant.IsLiteral) {
119                                 if (res is NullLiteral)
120                                         return res;
121                                 
122                                 return Constant.CreateConstantFromValue (res.Type, constant.GetValue (), expr.Location);
123                         }
124
125                         return res;
126                 }
127
128                 public override Expression DoResolveLValue (ResolveContext ec, Expression right_side)
129                 {
130                         return expr.DoResolveLValue (ec, right_side);
131                 }
132                 
133                 public override object Accept (StructuralVisitor visitor)
134                 {
135                         return visitor.Visit (this);
136                 }
137
138                 public override bool HasConditionalAccess ()
139                 {
140                         return false;
141                 }
142         }
143         
144         //
145         //   Unary implements unary expressions.
146         //
147         public class Unary : Expression
148         {
149                 public enum Operator : byte {
150                         UnaryPlus, UnaryNegation, LogicalNot, OnesComplement,
151                         AddressOf,  TOP
152                 }
153
154                 public readonly Operator Oper;
155                 public Expression Expr;
156                 ConvCast.Mode enum_conversion;
157
158                 public Unary (Operator op, Expression expr, Location loc)
159                 {
160                         Oper = op;
161                         Expr = expr;
162                         this.loc = loc;
163                 }
164
165                 // <summary>
166                 //   This routine will attempt to simplify the unary expression when the
167                 //   argument is a constant.
168                 // </summary>
169                 Constant TryReduceConstant (ResolveContext ec, Constant constant)
170                 {
171                         var e = constant;
172
173                         while (e is EmptyConstantCast)
174                                 e = ((EmptyConstantCast) e).child;
175                         
176                         if (e is SideEffectConstant) {
177                                 Constant r = TryReduceConstant (ec, ((SideEffectConstant) e).value);
178                                 return r == null ? null : new SideEffectConstant (r, e, r.Location);
179                         }
180
181                         TypeSpec expr_type = e.Type;
182                         
183                         switch (Oper){
184                         case Operator.UnaryPlus:
185                                 // Unary numeric promotions
186                                 switch (expr_type.BuiltinType) {
187                                 case BuiltinTypeSpec.Type.Byte:
188                                         return new IntConstant (ec.BuiltinTypes, ((ByteConstant) e).Value, e.Location);
189                                 case BuiltinTypeSpec.Type.SByte:
190                                         return new IntConstant (ec.BuiltinTypes, ((SByteConstant) e).Value, e.Location);
191                                 case BuiltinTypeSpec.Type.Short:
192                                         return new IntConstant (ec.BuiltinTypes, ((ShortConstant) e).Value, e.Location);
193                                 case BuiltinTypeSpec.Type.UShort:
194                                         return new IntConstant (ec.BuiltinTypes, ((UShortConstant) e).Value, e.Location);
195                                 case BuiltinTypeSpec.Type.Char:
196                                         return new IntConstant (ec.BuiltinTypes, ((CharConstant) e).Value, e.Location);
197                                 
198                                 // Predefined operators
199                                 case BuiltinTypeSpec.Type.Int:
200                                 case BuiltinTypeSpec.Type.UInt:
201                                 case BuiltinTypeSpec.Type.Long:
202                                 case BuiltinTypeSpec.Type.ULong:
203                                 case BuiltinTypeSpec.Type.Float:
204                                 case BuiltinTypeSpec.Type.Double:
205                                 case BuiltinTypeSpec.Type.Decimal:
206                                         return e;
207                                 }
208                                 
209                                 return null;
210                                 
211                         case Operator.UnaryNegation:
212                                 // Unary numeric promotions
213                                 switch (expr_type.BuiltinType) {
214                                 case BuiltinTypeSpec.Type.Byte:
215                                         return new IntConstant (ec.BuiltinTypes, -((ByteConstant) e).Value, e.Location);
216                                 case BuiltinTypeSpec.Type.SByte:
217                                         return new IntConstant (ec.BuiltinTypes, -((SByteConstant) e).Value, e.Location);
218                                 case BuiltinTypeSpec.Type.Short:
219                                         return new IntConstant (ec.BuiltinTypes, -((ShortConstant) e).Value, e.Location);
220                                 case BuiltinTypeSpec.Type.UShort:
221                                         return new IntConstant (ec.BuiltinTypes, -((UShortConstant) e).Value, e.Location);
222                                 case BuiltinTypeSpec.Type.Char:
223                                         return new IntConstant (ec.BuiltinTypes, -((CharConstant) e).Value, e.Location);
224
225                                 // Predefined operators
226                                 case BuiltinTypeSpec.Type.Int:
227                                         int ivalue = ((IntConstant) e).Value;
228                                         if (ivalue == int.MinValue) {
229                                                 if (ec.ConstantCheckState) {
230                                                         ConstantFold.Error_CompileTimeOverflow (ec, loc);
231                                                         return null;
232                                                 }
233                                                 return e;
234                                         }
235                                         return new IntConstant (ec.BuiltinTypes, -ivalue, e.Location);
236
237                                 case BuiltinTypeSpec.Type.Long:
238                                         long lvalue = ((LongConstant) e).Value;
239                                         if (lvalue == long.MinValue) {
240                                                 if (ec.ConstantCheckState) {
241                                                         ConstantFold.Error_CompileTimeOverflow (ec, loc);
242                                                         return null;
243                                                 }
244                                                 return e;
245                                         }
246                                         return new LongConstant (ec.BuiltinTypes, -lvalue, e.Location);
247
248                                 case BuiltinTypeSpec.Type.UInt:
249                                         UIntLiteral uil = constant as UIntLiteral;
250                                         if (uil != null) {
251                                                 if (uil.Value == int.MaxValue + (uint) 1)
252                                                         return new IntLiteral (ec.BuiltinTypes, int.MinValue, e.Location);
253                                                 return new LongLiteral (ec.BuiltinTypes, -uil.Value, e.Location);
254                                         }
255                                         return new LongConstant (ec.BuiltinTypes, -((UIntConstant) e).Value, e.Location);
256
257
258                                 case BuiltinTypeSpec.Type.ULong:
259                                         ULongLiteral ull = constant as ULongLiteral;
260                                         if (ull != null && ull.Value == 9223372036854775808)
261                                                 return new LongLiteral (ec.BuiltinTypes, long.MinValue, e.Location);
262                                         return null;
263
264                                 case BuiltinTypeSpec.Type.Float:
265                                         FloatLiteral fl = constant as FloatLiteral;
266                                         // For better error reporting
267                                         if (fl != null)
268                                                 return new FloatLiteral (ec.BuiltinTypes, -fl.Value, e.Location);
269
270                                         return new FloatConstant (ec.BuiltinTypes, -((FloatConstant) e).Value, e.Location);
271
272                                 case BuiltinTypeSpec.Type.Double:
273                                         DoubleLiteral dl = constant as DoubleLiteral;
274                                         // For better error reporting
275                                         if (dl != null)
276                                                 return new DoubleLiteral (ec.BuiltinTypes, -dl.Value, e.Location);
277
278                                         return new DoubleConstant (ec.BuiltinTypes, -((DoubleConstant) e).Value, e.Location);
279
280                                 case BuiltinTypeSpec.Type.Decimal:
281                                         return new DecimalConstant (ec.BuiltinTypes, -((DecimalConstant) e).Value, e.Location);
282                                 }
283
284                                 return null;
285                                 
286                         case Operator.LogicalNot:
287                                 if (expr_type.BuiltinType != BuiltinTypeSpec.Type.Bool)
288                                         return null;
289                                 
290                                 bool b = (bool)e.GetValue ();
291                                 return new BoolConstant (ec.BuiltinTypes, !b, e.Location);
292                                 
293                         case Operator.OnesComplement:
294                                 // Unary numeric promotions
295                                 switch (expr_type.BuiltinType) {
296                                 case BuiltinTypeSpec.Type.Byte:
297                                         return new IntConstant (ec.BuiltinTypes, ~((ByteConstant) e).Value, e.Location);
298                                 case BuiltinTypeSpec.Type.SByte:
299                                         return new IntConstant (ec.BuiltinTypes, ~((SByteConstant) e).Value, e.Location);
300                                 case BuiltinTypeSpec.Type.Short:
301                                         return new IntConstant (ec.BuiltinTypes, ~((ShortConstant) e).Value, e.Location);
302                                 case BuiltinTypeSpec.Type.UShort:
303                                         return new IntConstant (ec.BuiltinTypes, ~((UShortConstant) e).Value, e.Location);
304                                 case BuiltinTypeSpec.Type.Char:
305                                         return new IntConstant (ec.BuiltinTypes, ~((CharConstant) e).Value, e.Location);
306                                 
307                                 // Predefined operators
308                                 case BuiltinTypeSpec.Type.Int:
309                                         return new IntConstant (ec.BuiltinTypes, ~((IntConstant)e).Value, e.Location);
310                                 case BuiltinTypeSpec.Type.UInt:
311                                         return new UIntConstant (ec.BuiltinTypes, ~((UIntConstant) e).Value, e.Location);
312                                 case BuiltinTypeSpec.Type.Long:
313                                         return new LongConstant (ec.BuiltinTypes, ~((LongConstant) e).Value, e.Location);
314                                 case BuiltinTypeSpec.Type.ULong:
315                                         return new ULongConstant (ec.BuiltinTypes, ~((ULongConstant) e).Value, e.Location);
316                                 }
317                                 if (e is EnumConstant) {
318                                         var res = TryReduceConstant (ec, ((EnumConstant)e).Child);
319                                         if (res != null) {
320                                                 //
321                                                 // Numeric promotion upgraded types to int but for enum constant
322                                                 // original underlying constant type is needed
323                                                 //
324                                                 if (res.Type.BuiltinType == BuiltinTypeSpec.Type.Int) {
325                                                         int v = ((IntConstant) res).Value;
326                                                         switch (((EnumConstant) e).Child.Type.BuiltinType) {
327                                                                 case BuiltinTypeSpec.Type.UShort:
328                                                                 res = new UShortConstant (ec.BuiltinTypes, (ushort) v, e.Location);
329                                                                 break;
330                                                                 case BuiltinTypeSpec.Type.Short:
331                                                                 res = new ShortConstant (ec.BuiltinTypes, (short) v, e.Location);
332                                                                 break;
333                                                                 case BuiltinTypeSpec.Type.Byte:
334                                                                 res = new ByteConstant (ec.BuiltinTypes, (byte) v, e.Location);
335                                                                 break;
336                                                                 case BuiltinTypeSpec.Type.SByte:
337                                                                 res = new SByteConstant (ec.BuiltinTypes, (sbyte) v, e.Location);
338                                                                 break;
339                                                         }
340                                                 }
341
342                                                 res = new EnumConstant (res, expr_type);
343                                         }
344                                         return res;
345                                 }
346                                 return null;
347                         }
348                         throw new Exception ("Can not constant fold: " + Oper.ToString());
349                 }
350                 
351                 protected virtual Expression ResolveOperator (ResolveContext ec, Expression expr)
352                 {
353                         eclass = ExprClass.Value;
354
355                         TypeSpec expr_type = expr.Type;
356                         Expression best_expr;
357
358                         TypeSpec[] predefined = ec.BuiltinTypes.OperatorsUnary [(int) Oper];
359
360                         //
361                         // Primitive types first
362                         //
363                         if (BuiltinTypeSpec.IsPrimitiveType (expr_type)) {
364                                 best_expr = ResolvePrimitivePredefinedType (ec, expr, predefined);
365                                 if (best_expr == null)
366                                         return null;
367
368                                 type = best_expr.Type;
369                                 Expr = best_expr;
370                                 return this;
371                         }
372
373                         //
374                         // E operator ~(E x);
375                         //
376                         if (Oper == Operator.OnesComplement && expr_type.IsEnum)
377                                 return ResolveEnumOperator (ec, expr, predefined);
378
379                         return ResolveUserType (ec, expr, predefined);
380                 }
381
382                 protected virtual Expression ResolveEnumOperator (ResolveContext ec, Expression expr, TypeSpec[] predefined)
383                 {
384                         TypeSpec underlying_type = EnumSpec.GetUnderlyingType (expr.Type);
385                         Expression best_expr = ResolvePrimitivePredefinedType (ec, EmptyCast.Create (expr, underlying_type), predefined);
386                         if (best_expr == null)
387                                 return null;
388
389                         Expr = best_expr;
390                         enum_conversion = Binary.GetEnumResultCast (underlying_type);
391                         type = expr.Type;
392                         return EmptyCast.Create (this, type);
393                 }
394
395                 public override bool ContainsEmitWithAwait ()
396                 {
397                         return Expr.ContainsEmitWithAwait ();
398                 }
399
400                 public override Expression CreateExpressionTree (ResolveContext ec)
401                 {
402                         return CreateExpressionTree (ec, null);
403                 }
404
405                 Expression CreateExpressionTree (ResolveContext ec, Expression user_op)
406                 {
407                         string method_name;
408                         switch (Oper) {
409                         case Operator.AddressOf:
410                                 Error_PointerInsideExpressionTree (ec);
411                                 return null;
412                         case Operator.UnaryNegation:
413                                 if (ec.HasSet (ResolveContext.Options.CheckedScope) && user_op == null && !IsFloat (type))
414                                         method_name = "NegateChecked";
415                                 else
416                                         method_name = "Negate";
417                                 break;
418                         case Operator.OnesComplement:
419                         case Operator.LogicalNot:
420                                 method_name = "Not";
421                                 break;
422                         case Operator.UnaryPlus:
423                                 method_name = "UnaryPlus";
424                                 break;
425                         default:
426                                 throw new InternalErrorException ("Unknown unary operator " + Oper.ToString ());
427                         }
428
429                         Arguments args = new Arguments (2);
430                         args.Add (new Argument (Expr.CreateExpressionTree (ec)));
431                         if (user_op != null)
432                                 args.Add (new Argument (user_op));
433
434                         return CreateExpressionFactoryCall (ec, method_name, args);
435                 }
436
437                 public static TypeSpec[][] CreatePredefinedOperatorsTable (BuiltinTypes types)
438                 {
439                         var predefined_operators = new TypeSpec[(int) Operator.TOP][];
440
441                         //
442                         // 7.6.1 Unary plus operator
443                         //
444                         predefined_operators [(int) Operator.UnaryPlus] = new TypeSpec [] {
445                                 types.Int, types.UInt,
446                                 types.Long, types.ULong,
447                                 types.Float, types.Double,
448                                 types.Decimal
449                         };
450
451                         //
452                         // 7.6.2 Unary minus operator
453                         //
454                         predefined_operators [(int) Operator.UnaryNegation] = new TypeSpec [] {
455                                 types.Int,  types.Long,
456                                 types.Float, types.Double,
457                                 types.Decimal
458                         };
459
460                         //
461                         // 7.6.3 Logical negation operator
462                         //
463                         predefined_operators [(int) Operator.LogicalNot] = new TypeSpec [] {
464                                 types.Bool
465                         };
466
467                         //
468                         // 7.6.4 Bitwise complement operator
469                         //
470                         predefined_operators [(int) Operator.OnesComplement] = new TypeSpec [] {
471                                 types.Int, types.UInt,
472                                 types.Long, types.ULong
473                         };
474
475                         return predefined_operators;
476                 }
477
478                 //
479                 // Unary numeric promotions
480                 //
481                 static Expression DoNumericPromotion (ResolveContext rc, Operator op, Expression expr)
482                 {
483                         TypeSpec expr_type = expr.Type;
484                         if (op == Operator.UnaryPlus || op == Operator.UnaryNegation || op == Operator.OnesComplement) {
485                                 switch (expr_type.BuiltinType) {
486                                 case BuiltinTypeSpec.Type.Byte:
487                                 case BuiltinTypeSpec.Type.SByte:
488                                 case BuiltinTypeSpec.Type.Short:
489                                 case BuiltinTypeSpec.Type.UShort:
490                                 case BuiltinTypeSpec.Type.Char:
491                                         return Convert.ImplicitNumericConversion (expr, rc.BuiltinTypes.Int);
492                                 }
493                         }
494
495                         if (op == Operator.UnaryNegation && expr_type.BuiltinType == BuiltinTypeSpec.Type.UInt)
496                                 return Convert.ImplicitNumericConversion (expr, rc.BuiltinTypes.Long);
497
498                         return expr;
499                 }
500
501                 protected override Expression DoResolve (ResolveContext ec)
502                 {
503                         if (Oper == Operator.AddressOf) {
504                                 return ResolveAddressOf (ec);
505                         }
506
507                         Expr = Expr.Resolve (ec);
508                         if (Expr == null)
509                                 return null;
510
511                         if (Expr.Type.BuiltinType == BuiltinTypeSpec.Type.Dynamic) {
512                                 Arguments args = new Arguments (1);
513                                 args.Add (new Argument (Expr));
514                                 return new DynamicUnaryConversion (GetOperatorExpressionTypeName (), args, loc).Resolve (ec);
515                         }
516
517                         if (Expr.Type.IsNullableType)
518                                 return new Nullable.LiftedUnaryOperator (Oper, Expr, loc).Resolve (ec);
519
520                         //
521                         // Attempt to use a constant folding operation.
522                         //
523                         Constant cexpr = Expr as Constant;
524                         if (cexpr != null) {
525                                 cexpr = TryReduceConstant (ec, cexpr);
526                                 if (cexpr != null)
527                                         return cexpr;
528                         }
529
530                         Expression expr = ResolveOperator (ec, Expr);
531                         if (expr == null)
532                                 Error_OperatorCannotBeApplied (ec, loc, OperName (Oper), Expr.Type);
533                         
534                         //
535                         // Reduce unary operator on predefined types
536                         //
537                         if (expr == this && Oper == Operator.UnaryPlus)
538                                 return Expr;
539
540                         return expr;
541                 }
542
543                 public override Expression DoResolveLValue (ResolveContext ec, Expression right)
544                 {
545                         return null;
546                 }
547
548                 public override void Emit (EmitContext ec)
549                 {
550                         EmitOperator (ec, type);
551                 }
552
553                 protected void EmitOperator (EmitContext ec, TypeSpec type)
554                 {
555                         switch (Oper) {
556                         case Operator.UnaryPlus:
557                                 Expr.Emit (ec);
558                                 break;
559                                 
560                         case Operator.UnaryNegation:
561                                 if (ec.HasSet (EmitContext.Options.CheckedScope) && !IsFloat (type)) {
562                                         if (ec.HasSet (BuilderContext.Options.AsyncBody) && Expr.ContainsEmitWithAwait ())
563                                                 Expr = Expr.EmitToField (ec);
564
565                                         ec.EmitInt (0);
566                                         if (type.BuiltinType == BuiltinTypeSpec.Type.Long)
567                                                 ec.Emit (OpCodes.Conv_U8);
568                                         Expr.Emit (ec);
569                                         ec.Emit (OpCodes.Sub_Ovf);
570                                 } else {
571                                         Expr.Emit (ec);
572                                         ec.Emit (OpCodes.Neg);
573                                 }
574                                 
575                                 break;
576                                 
577                         case Operator.LogicalNot:
578                                 Expr.Emit (ec);
579                                 ec.EmitInt (0);
580                                 ec.Emit (OpCodes.Ceq);
581                                 break;
582                                 
583                         case Operator.OnesComplement:
584                                 Expr.Emit (ec);
585                                 ec.Emit (OpCodes.Not);
586                                 break;
587                                 
588                         case Operator.AddressOf:
589                                 ((IMemoryLocation)Expr).AddressOf (ec, AddressOp.LoadStore);
590                                 break;
591                                 
592                         default:
593                                 throw new Exception ("This should not happen: Operator = "
594                                                      + Oper.ToString ());
595                         }
596
597                         //
598                         // Same trick as in Binary expression
599                         //
600                         if (enum_conversion != 0) {
601                                 using (ec.With (BuilderContext.Options.CheckedScope, false)) {
602                                         ConvCast.Emit (ec, enum_conversion);
603                                 }
604                         }
605                 }
606
607                 public override void EmitBranchable (EmitContext ec, Label target, bool on_true)
608                 {
609                         if (Oper == Operator.LogicalNot)
610                                 Expr.EmitBranchable (ec, target, !on_true);
611                         else
612                                 base.EmitBranchable (ec, target, on_true);
613                 }
614
615                 public override void EmitSideEffect (EmitContext ec)
616                 {
617                         Expr.EmitSideEffect (ec);
618                 }
619
620                 public static void Error_Ambiguous (ResolveContext rc, string oper, TypeSpec type, Location loc)
621                 {
622                         rc.Report.Error (35, loc, "Operator `{0}' is ambiguous on an operand of type `{1}'",
623                                 oper, type.GetSignatureForError ());
624                 }
625
626                 public override void FlowAnalysis (FlowAnalysisContext fc)
627                 {
628                         FlowAnalysis (fc, false);
629                 }
630
631                 public override void FlowAnalysisConditional (FlowAnalysisContext fc)
632                 {
633                         FlowAnalysis (fc, true);
634                 }
635
636                 void FlowAnalysis (FlowAnalysisContext fc, bool conditional)
637                 {
638                         if (Oper == Operator.AddressOf) {
639                                 var vr = Expr as VariableReference;
640                                 if (vr != null && vr.VariableInfo != null)
641                                         fc.SetVariableAssigned (vr.VariableInfo);
642
643                                 return;
644                         }
645
646                         if (Oper == Operator.LogicalNot && conditional) {
647                                 Expr.FlowAnalysisConditional (fc);
648
649                                 var temp = fc.DefiniteAssignmentOnTrue;
650                                 fc.DefiniteAssignmentOnTrue = fc.DefiniteAssignmentOnFalse;
651                                 fc.DefiniteAssignmentOnFalse = temp;
652                         } else {
653                                 Expr.FlowAnalysis (fc);
654                         }
655                 }
656
657                 //
658                 // Converts operator to System.Linq.Expressions.ExpressionType enum name
659                 //
660                 string GetOperatorExpressionTypeName ()
661                 {
662                         switch (Oper) {
663                         case Operator.OnesComplement:
664                                 return "OnesComplement";
665                         case Operator.LogicalNot:
666                                 return "Not";
667                         case Operator.UnaryNegation:
668                                 return "Negate";
669                         case Operator.UnaryPlus:
670                                 return "UnaryPlus";
671                         default:
672                                 throw new NotImplementedException ("Unknown express type operator " + Oper.ToString ());
673                         }
674                 }
675
676                 static bool IsFloat (TypeSpec t)
677                 {
678                         return t.BuiltinType == BuiltinTypeSpec.Type.Double || t.BuiltinType == BuiltinTypeSpec.Type.Float;
679                 }
680
681                 //
682                 // Returns a stringified representation of the Operator
683                 //
684                 public static string OperName (Operator oper)
685                 {
686                         switch (oper) {
687                         case Operator.UnaryPlus:
688                                 return "+";
689                         case Operator.UnaryNegation:
690                                 return "-";
691                         case Operator.LogicalNot:
692                                 return "!";
693                         case Operator.OnesComplement:
694                                 return "~";
695                         case Operator.AddressOf:
696                                 return "&";
697                         }
698
699                         throw new NotImplementedException (oper.ToString ());
700                 }
701
702                 public override SLE.Expression MakeExpression (BuilderContext ctx)
703                 {
704                         var expr = Expr.MakeExpression (ctx);
705                         bool is_checked = ctx.HasSet (BuilderContext.Options.CheckedScope);
706
707                         switch (Oper) {
708                         case Operator.UnaryNegation:
709                                 return is_checked ? SLE.Expression.NegateChecked (expr) : SLE.Expression.Negate (expr);
710                         case Operator.LogicalNot:
711                                 return SLE.Expression.Not (expr);
712                         case Operator.OnesComplement:
713                                 return SLE.Expression.OnesComplement (expr);
714                         default:
715                                 throw new NotImplementedException (Oper.ToString ());
716                         }
717                 }
718
719                 Expression ResolveAddressOf (ResolveContext ec)
720                 {
721                         if (!ec.IsUnsafe)
722                                 UnsafeError (ec, loc);
723
724                         Expr = Expr.DoResolveLValue (ec, EmptyExpression.UnaryAddress);
725                         if (Expr == null || Expr.eclass != ExprClass.Variable) {
726                                 ec.Report.Error (211, loc, "Cannot take the address of the given expression");
727                                 return null;
728                         }
729
730                         if (!TypeManager.VerifyUnmanaged (ec.Module, Expr.Type, loc)) {
731                                 return null;
732                         }
733
734                         IVariableReference vr = Expr as IVariableReference;
735                         bool is_fixed;
736                         if (vr != null) {
737                                 is_fixed = vr.IsFixed;
738                                 vr.SetHasAddressTaken ();
739
740                                 if (vr.IsHoisted) {
741                                         AnonymousMethodExpression.Error_AddressOfCapturedVar (ec, vr, loc);
742                                 }
743                         } else {
744                                 IFixedExpression fe = Expr as IFixedExpression;
745                                 is_fixed = fe != null && fe.IsFixed;
746                         }
747
748                         if (!is_fixed && !ec.HasSet (ResolveContext.Options.FixedInitializerScope)) {
749                                 ec.Report.Error (212, loc, "You can only take the address of unfixed expression inside of a fixed statement initializer");
750                         }
751
752                         type = PointerContainer.MakeType (ec.Module, Expr.Type);
753                         eclass = ExprClass.Value;
754                         return this;
755                 }
756
757                 Expression ResolvePrimitivePredefinedType (ResolveContext rc, Expression expr, TypeSpec[] predefined)
758                 {
759                         expr = DoNumericPromotion (rc, Oper, expr);
760                         TypeSpec expr_type = expr.Type;
761                         foreach (TypeSpec t in predefined) {
762                                 if (t == expr_type)
763                                         return expr;
764                         }
765                         return null;
766                 }
767
768                 //
769                 // Perform user-operator overload resolution
770                 //
771                 protected virtual Expression ResolveUserOperator (ResolveContext ec, Expression expr)
772                 {
773                         CSharp.Operator.OpType op_type;
774                         switch (Oper) {
775                         case Operator.LogicalNot:
776                                 op_type = CSharp.Operator.OpType.LogicalNot; break;
777                         case Operator.OnesComplement:
778                                 op_type = CSharp.Operator.OpType.OnesComplement; break;
779                         case Operator.UnaryNegation:
780                                 op_type = CSharp.Operator.OpType.UnaryNegation; break;
781                         case Operator.UnaryPlus:
782                                 op_type = CSharp.Operator.OpType.UnaryPlus; break;
783                         default:
784                                 throw new InternalErrorException (Oper.ToString ());
785                         }
786
787                         var methods = MemberCache.GetUserOperator (expr.Type, op_type, false);
788                         if (methods == null)
789                                 return null;
790
791                         Arguments args = new Arguments (1);
792                         args.Add (new Argument (expr));
793
794                         var res = new OverloadResolver (methods, OverloadResolver.Restrictions.BaseMembersIncluded | OverloadResolver.Restrictions.NoBaseMembers, loc);
795                         var oper = res.ResolveOperator (ec, ref args);
796
797                         if (oper == null)
798                                 return null;
799
800                         Expr = args [0].Expr;
801                         return new UserOperatorCall (oper, args, CreateExpressionTree, expr.Location);
802                 }
803
804                 //
805                 // Unary user type overload resolution
806                 //
807                 Expression ResolveUserType (ResolveContext ec, Expression expr, TypeSpec[] predefined)
808                 {
809                         Expression best_expr = ResolveUserOperator (ec, expr);
810                         if (best_expr != null)
811                                 return best_expr;
812
813                         foreach (TypeSpec t in predefined) {
814                                 Expression oper_expr = Convert.ImplicitUserConversion (ec, expr, t, expr.Location);
815                                 if (oper_expr == null)
816                                         continue;
817
818                                 if (oper_expr == ErrorExpression.Instance)
819                                         return oper_expr;
820
821                                 //
822                                 // decimal type is predefined but has user-operators
823                                 //
824                                 if (oper_expr.Type.BuiltinType == BuiltinTypeSpec.Type.Decimal)
825                                         oper_expr = ResolveUserType (ec, oper_expr, predefined);
826                                 else
827                                         oper_expr = ResolvePrimitivePredefinedType (ec, oper_expr, predefined);
828
829                                 if (oper_expr == null)
830                                         continue;
831
832                                 if (best_expr == null) {
833                                         best_expr = oper_expr;
834                                         continue;
835                                 }
836
837                                 int result = OverloadResolver.BetterTypeConversion (ec, best_expr.Type, t);
838                                 if (result == 0) {
839                                         if ((oper_expr is UserOperatorCall || oper_expr is UserCast) && (best_expr is UserOperatorCall || best_expr is UserCast)) {
840                                                 Error_Ambiguous (ec, OperName (Oper), expr.Type, loc);
841                                         } else {
842                                                 Error_OperatorCannotBeApplied (ec, loc, OperName (Oper), expr.Type);
843                                         }
844
845                                         break;
846                                 }
847
848                                 if (result == 2)
849                                         best_expr = oper_expr;
850                         }
851                         
852                         if (best_expr == null)
853                                 return null;
854                         
855                         //
856                         // HACK: Decimal user-operator is included in standard operators
857                         //
858                         if (best_expr.Type.BuiltinType == BuiltinTypeSpec.Type.Decimal)
859                                 return best_expr;
860
861                         Expr = best_expr;
862                         type = best_expr.Type;
863                         return this;                    
864                 }
865
866                 protected override void CloneTo (CloneContext clonectx, Expression t)
867                 {
868                         Unary target = (Unary) t;
869
870                         target.Expr = Expr.Clone (clonectx);
871                 }
872                 
873                 public override object Accept (StructuralVisitor visitor)
874                 {
875                         return visitor.Visit (this);
876                 }
877
878         }
879
880         //
881         // Unary operators are turned into Indirection expressions
882         // after semantic analysis (this is so we can take the address
883         // of an indirection).
884         //
885         public class Indirection : Expression, IMemoryLocation, IAssignMethod, IFixedExpression {
886                 Expression expr;
887                 LocalTemporary temporary;
888                 bool prepared;
889                 
890                 public Indirection (Expression expr, Location l)
891                 {
892                         this.expr = expr;
893                         loc = l;
894                 }
895
896                 public Expression Expr {
897                         get {
898                                 return expr;
899                         }
900                 }
901
902                 public bool IsFixed {
903                         get { return true; }
904                 }
905
906                 public override Location StartLocation {
907                         get {
908                                 return expr.StartLocation;
909                         }
910                 }
911
912                 protected override void CloneTo (CloneContext clonectx, Expression t)
913                 {
914                         Indirection target = (Indirection) t;
915                         target.expr = expr.Clone (clonectx);
916                 }
917
918                 public override bool ContainsEmitWithAwait ()
919                 {
920                         throw new NotImplementedException ();
921                 }
922
923                 public override Expression CreateExpressionTree (ResolveContext ec)
924                 {
925                         Error_PointerInsideExpressionTree (ec);
926                         return null;
927                 }
928                 
929                 public override void Emit (EmitContext ec)
930                 {
931                         if (!prepared)
932                                 expr.Emit (ec);
933                         
934                         ec.EmitLoadFromPtr (Type);
935                 }
936
937                 public void Emit (EmitContext ec, bool leave_copy)
938                 {
939                         Emit (ec);
940                         if (leave_copy) {
941                                 ec.Emit (OpCodes.Dup);
942                                 temporary = new LocalTemporary (expr.Type);
943                                 temporary.Store (ec);
944                         }
945                 }
946                 
947                 public void EmitAssign (EmitContext ec, Expression source, bool leave_copy, bool isCompound)
948                 {
949                         prepared = isCompound;
950                         
951                         expr.Emit (ec);
952
953                         if (isCompound)
954                                 ec.Emit (OpCodes.Dup);
955                         
956                         source.Emit (ec);
957                         if (leave_copy) {
958                                 ec.Emit (OpCodes.Dup);
959                                 temporary = new LocalTemporary (source.Type);
960                                 temporary.Store (ec);
961                         }
962                         
963                         ec.EmitStoreFromPtr (type);
964                         
965                         if (temporary != null) {
966                                 temporary.Emit (ec);
967                                 temporary.Release (ec);
968                         }
969                 }
970                 
971                 public void AddressOf (EmitContext ec, AddressOp Mode)
972                 {
973                         expr.Emit (ec);
974                 }
975
976                 public override Expression DoResolveLValue (ResolveContext ec, Expression right_side)
977                 {
978                         return DoResolve (ec);
979                 }
980
981                 protected override Expression DoResolve (ResolveContext ec)
982                 {
983                         expr = expr.Resolve (ec);
984                         if (expr == null)
985                                 return null;
986
987                         if (!ec.IsUnsafe)
988                                 UnsafeError (ec, loc);
989
990                         var pc = expr.Type as PointerContainer;
991
992                         if (pc == null) {
993                                 ec.Report.Error (193, loc, "The * or -> operator must be applied to a pointer");
994                                 return null;
995                         }
996
997                         type = pc.Element;
998
999                         if (type.Kind == MemberKind.Void) {
1000                                 Error_VoidPointerOperation (ec);
1001                                 return null;
1002                         }
1003
1004                         eclass = ExprClass.Variable;
1005                         return this;
1006                 }
1007
1008                 public override object Accept (StructuralVisitor visitor)
1009                 {
1010                         return visitor.Visit (this);
1011                 }
1012         }
1013         
1014         /// <summary>
1015         ///   Unary Mutator expressions (pre and post ++ and --)
1016         /// </summary>
1017         ///
1018         /// <remarks>
1019         ///   UnaryMutator implements ++ and -- expressions.   It derives from
1020         ///   ExpressionStatement becuase the pre/post increment/decrement
1021         ///   operators can be used in a statement context.
1022         ///
1023         /// FIXME: Idea, we could split this up in two classes, one simpler
1024         /// for the common case, and one with the extra fields for more complex
1025         /// classes (indexers require temporary access;  overloaded require method)
1026         ///
1027         /// </remarks>
1028         public class UnaryMutator : ExpressionStatement
1029         {
1030                 class DynamicPostMutator : Expression, IAssignMethod
1031                 {
1032                         LocalTemporary temp;
1033                         Expression expr;
1034
1035                         public DynamicPostMutator (Expression expr)
1036                         {
1037                                 this.expr = expr;
1038                                 this.type = expr.Type;
1039                                 this.loc = expr.Location;
1040                         }
1041
1042                         public override Expression CreateExpressionTree (ResolveContext ec)
1043                         {
1044                                 throw new NotImplementedException ("ET");
1045                         }
1046
1047                         protected override Expression DoResolve (ResolveContext rc)
1048                         {
1049                                 eclass = expr.eclass;
1050                                 return this;
1051                         }
1052
1053                         public override Expression DoResolveLValue (ResolveContext ec, Expression right_side)
1054                         {
1055                                 expr.DoResolveLValue (ec, right_side);
1056                                 return DoResolve (ec);
1057                         }
1058
1059                         public override void Emit (EmitContext ec)
1060                         {
1061                                 temp.Emit (ec);
1062                         }
1063
1064                         public void Emit (EmitContext ec, bool leave_copy)
1065                         {
1066                                 throw new NotImplementedException ();
1067                         }
1068
1069                         //
1070                         // Emits target assignment using unmodified source value
1071                         //
1072                         public void EmitAssign (EmitContext ec, Expression source, bool leave_copy, bool isCompound)
1073                         {
1074                                 //
1075                                 // Allocate temporary variable to keep original value before it's modified
1076                                 //
1077                                 temp = new LocalTemporary (type);
1078                                 expr.Emit (ec);
1079                                 temp.Store (ec);
1080
1081                                 ((IAssignMethod) expr).EmitAssign (ec, source, false, isCompound);
1082
1083                                 if (leave_copy)
1084                                         Emit (ec);
1085
1086                                 temp.Release (ec);
1087                                 temp = null;
1088                         }
1089                 }
1090
1091                 [Flags]
1092                 public enum Mode : byte {
1093                         IsIncrement    = 0,
1094                         IsDecrement    = 1,
1095                         IsPre          = 0,
1096                         IsPost         = 2,
1097                         
1098                         PreIncrement   = 0,
1099                         PreDecrement   = IsDecrement,
1100                         PostIncrement  = IsPost,
1101                         PostDecrement  = IsPost | IsDecrement
1102                 }
1103
1104                 Mode mode;
1105                 bool is_expr, recurse;
1106
1107                 protected Expression expr;
1108
1109                 // Holds the real operation
1110                 Expression operation;
1111
1112                 public UnaryMutator (Mode m, Expression e, Location loc)
1113                 {
1114                         mode = m;
1115                         this.loc = loc;
1116                         expr = e;
1117                 }
1118
1119                 public Mode UnaryMutatorMode {
1120                         get {
1121                                 return mode;
1122                         }
1123                 }
1124                 
1125                 public Expression Expr {
1126                         get {
1127                                 return expr;
1128                         }
1129                 }
1130
1131                 public override Location StartLocation {
1132                         get {
1133                                 return (mode & Mode.IsPost) != 0 ? expr.Location : loc;
1134                         }
1135                 }
1136
1137                 public override bool ContainsEmitWithAwait ()
1138                 {
1139                         return expr.ContainsEmitWithAwait ();
1140                 }
1141
1142                 public override Expression CreateExpressionTree (ResolveContext ec)
1143                 {
1144                         return new SimpleAssign (this, this).CreateExpressionTree (ec);
1145                 }
1146
1147                 public static TypeSpec[] CreatePredefinedOperatorsTable (BuiltinTypes types)
1148                 {
1149                         //
1150                         // Predefined ++ and -- operators exist for the following types: 
1151                         // sbyte, byte, short, ushort, int, uint, long, ulong, char, float, double, decimal
1152                         //
1153                         return new TypeSpec[] {
1154                                 types.Int,
1155                                 types.Long,
1156
1157                                 types.SByte,
1158                                 types.Byte,
1159                                 types.Short,
1160                                 types.UInt,
1161                                 types.ULong,
1162                                 types.Char,
1163                                 types.Float,
1164                                 types.Double,
1165                                 types.Decimal
1166                         };
1167                 }
1168
1169                 protected override Expression DoResolve (ResolveContext ec)
1170                 {
1171                         expr = expr.Resolve (ec);
1172                         
1173                         if (expr == null || expr.Type == InternalType.ErrorType)
1174                                 return null;
1175
1176                         if (expr.Type.BuiltinType == BuiltinTypeSpec.Type.Dynamic) {
1177                                 //
1178                                 // Handle postfix unary operators using local
1179                                 // temporary variable
1180                                 //
1181                                 if ((mode & Mode.IsPost) != 0)
1182                                         expr = new DynamicPostMutator (expr);
1183
1184                                 Arguments args = new Arguments (1);
1185                                 args.Add (new Argument (expr));
1186                                 return new SimpleAssign (expr, new DynamicUnaryConversion (GetOperatorExpressionTypeName (), args, loc)).Resolve (ec);
1187                         }
1188
1189                         if (expr.Type.IsNullableType)
1190                                 return new Nullable.LiftedUnaryMutator (mode, expr, loc).Resolve (ec);
1191
1192                         return DoResolveOperation (ec);
1193                 }
1194
1195                 protected Expression DoResolveOperation (ResolveContext ec)
1196                 {
1197                         eclass = ExprClass.Value;
1198                         type = expr.Type;
1199
1200                         if (expr is RuntimeValueExpression) {
1201                                 operation = expr;
1202                         } else {
1203                                 // Use itself at the top of the stack
1204                                 operation = new EmptyExpression (type);
1205                         }
1206
1207                         //
1208                         // The operand of the prefix/postfix increment decrement operators
1209                         // should be an expression that is classified as a variable,
1210                         // a property access or an indexer access
1211                         //
1212                         // TODO: Move to parser, expr is ATypeNameExpression
1213                         if (expr.eclass == ExprClass.Variable || expr.eclass == ExprClass.IndexerAccess || expr.eclass == ExprClass.PropertyAccess) {
1214                                 expr = expr.ResolveLValue (ec, expr);
1215                         } else {
1216                                 ec.Report.Error (1059, loc, "The operand of an increment or decrement operator must be a variable, property or indexer");
1217                         }
1218
1219                         //
1220                         // Step 1: Try to find a user operator, it has priority over predefined ones
1221                         //
1222                         var user_op = IsDecrement ? Operator.OpType.Decrement : Operator.OpType.Increment;
1223                         var methods = MemberCache.GetUserOperator (type, user_op, false);
1224
1225                         if (methods != null) {
1226                                 Arguments args = new Arguments (1);
1227                                 args.Add (new Argument (expr));
1228
1229                                 var res = new OverloadResolver (methods, OverloadResolver.Restrictions.BaseMembersIncluded | OverloadResolver.Restrictions.NoBaseMembers, loc);
1230                                 var method = res.ResolveOperator (ec, ref args);
1231                                 if (method == null)
1232                                         return null;
1233
1234                                 args[0].Expr = operation;
1235                                 operation = new UserOperatorCall (method, args, null, loc);
1236                                 operation = Convert.ImplicitConversionRequired (ec, operation, type, loc);
1237                                 return this;
1238                         }
1239
1240                         //
1241                         // Step 2: Try predefined types
1242                         //
1243
1244                         Expression source = null;
1245                         bool primitive_type;
1246
1247                         //
1248                         // Predefined without user conversion first for speed-up
1249                         //
1250                         // Predefined ++ and -- operators exist for the following types: 
1251                         // sbyte, byte, short, ushort, int, uint, long, ulong, char, float, double, decimal
1252                         //
1253                         switch (type.BuiltinType) {
1254                         case BuiltinTypeSpec.Type.Byte:
1255                         case BuiltinTypeSpec.Type.SByte:
1256                         case BuiltinTypeSpec.Type.Short:
1257                         case BuiltinTypeSpec.Type.UShort:
1258                         case BuiltinTypeSpec.Type.Int:
1259                         case BuiltinTypeSpec.Type.UInt:
1260                         case BuiltinTypeSpec.Type.Long:
1261                         case BuiltinTypeSpec.Type.ULong:
1262                         case BuiltinTypeSpec.Type.Char:
1263                         case BuiltinTypeSpec.Type.Float:
1264                         case BuiltinTypeSpec.Type.Double:
1265                         case BuiltinTypeSpec.Type.Decimal:
1266                                 source = operation;
1267                                 primitive_type = true;
1268                                 break;
1269                         default:
1270                                 primitive_type = false;
1271
1272                                 // ++/-- on pointer variables of all types except void*
1273                                 if (type.IsPointer) {
1274                                         if (((PointerContainer) type).Element.Kind == MemberKind.Void) {
1275                                                 Error_VoidPointerOperation (ec);
1276                                                 return null;
1277                                         }
1278
1279                                         source = operation;
1280                                 } else {
1281                                         Expression best_source = null;
1282                                         foreach (var t in ec.BuiltinTypes.OperatorsUnaryMutator) {
1283                                                 source = Convert.ImplicitUserConversion (ec, operation, t, loc);
1284
1285                                                 // LAMESPEC: It should error on ambiguous operators but that would make us incompatible
1286                                                 if (source == null)
1287                                                         continue;
1288
1289                                                 if (best_source == null) {
1290                                                         best_source = source;
1291                                                         continue;
1292                                                 }
1293
1294                                                 var better = OverloadResolver.BetterTypeConversion (ec, best_source.Type, source.Type);
1295                                                 if (better == 1)
1296                                                         continue;
1297
1298                                                 if (better == 2) {
1299                                                         best_source = source;
1300                                                         continue;
1301                                                 }
1302
1303                                                 Unary.Error_Ambiguous (ec, OperName (mode), type, loc);
1304                                                 break;
1305                                         }
1306
1307                                         source = best_source;
1308                                 }
1309
1310                                 // ++/-- on enum types
1311                                 if (source == null && type.IsEnum)
1312                                         source = operation;
1313
1314                                 if (source == null) {
1315                                         expr.Error_OperatorCannotBeApplied (ec, loc, Operator.GetName (user_op), type);
1316                                         return null;
1317                                 }
1318
1319                                 break;
1320                         }
1321
1322                         var one = new IntConstant (ec.BuiltinTypes, 1, loc);
1323                         var op = IsDecrement ? Binary.Operator.Subtraction : Binary.Operator.Addition;
1324                         operation = new Binary (op, source, one);
1325                         operation = operation.Resolve (ec);
1326                         if (operation == null)
1327                                 throw new NotImplementedException ("should not be reached");
1328
1329                         if (operation.Type != type) {
1330                                 if (primitive_type)
1331                                         operation = Convert.ExplicitNumericConversion (ec, operation, type);
1332                                 else
1333                                         operation = Convert.ImplicitConversionRequired (ec, operation, type, loc);
1334                         }
1335
1336                         return this;
1337                 }
1338
1339                 void EmitCode (EmitContext ec, bool is_expr)
1340                 {
1341                         recurse = true;
1342                         this.is_expr = is_expr;
1343                         ((IAssignMethod) expr).EmitAssign (ec, this, is_expr && (mode == Mode.PreIncrement || mode == Mode.PreDecrement), true);
1344                 }
1345
1346                 public override void Emit (EmitContext ec)
1347                 {
1348                         //
1349                         // We use recurse to allow ourselfs to be the source
1350                         // of an assignment. This little hack prevents us from
1351                         // having to allocate another expression
1352                         //
1353                         if (recurse) {
1354                                 ((IAssignMethod) expr).Emit (ec, is_expr && (mode == Mode.PostIncrement || mode == Mode.PostDecrement));
1355
1356                                 EmitOperation (ec);
1357
1358                                 recurse = false;
1359                                 return;
1360                         }
1361
1362                         EmitCode (ec, true);
1363                 }
1364
1365                 protected virtual void EmitOperation (EmitContext ec)
1366                 {
1367                         operation.Emit (ec);
1368                 }
1369
1370                 public override void EmitStatement (EmitContext ec)
1371                 {
1372                         EmitCode (ec, false);
1373                 }
1374
1375                 public override void FlowAnalysis (FlowAnalysisContext fc)
1376                 {
1377                         expr.FlowAnalysis (fc);
1378                 }
1379
1380                 //
1381                 // Converts operator to System.Linq.Expressions.ExpressionType enum name
1382                 //
1383                 string GetOperatorExpressionTypeName ()
1384                 {
1385                         return IsDecrement ? "Decrement" : "Increment";
1386                 }
1387
1388                 bool IsDecrement {
1389                         get { return (mode & Mode.IsDecrement) != 0; }
1390                 }
1391
1392
1393                 public override SLE.Expression MakeExpression (BuilderContext ctx)
1394                 {
1395                         var target = ((RuntimeValueExpression) expr).MetaObject.Expression;
1396                         var source = SLE.Expression.Convert (operation.MakeExpression (ctx), target.Type);
1397                         return SLE.Expression.Assign (target, source);
1398                 }
1399
1400                 public static string OperName (Mode oper)
1401                 {
1402                         return (oper & Mode.IsDecrement) != 0 ? "--" : "++";
1403                 }
1404
1405                 protected override void CloneTo (CloneContext clonectx, Expression t)
1406                 {
1407                         UnaryMutator target = (UnaryMutator) t;
1408
1409                         target.expr = expr.Clone (clonectx);
1410                 }
1411
1412                 public override object Accept (StructuralVisitor visitor)
1413                 {
1414                         return visitor.Visit (this);
1415                 }
1416
1417         }
1418
1419         //
1420         // Base class for the `is' and `as' operators
1421         //
1422         public abstract class Probe : Expression
1423         {
1424                 public Expression ProbeType;
1425                 protected Expression expr;
1426                 protected TypeSpec probe_type_expr;
1427                 
1428                 protected Probe (Expression expr, Expression probe_type, Location l)
1429                 {
1430                         ProbeType = probe_type;
1431                         loc = l;
1432                         this.expr = expr;
1433                 }
1434
1435                 public Expression Expr {
1436                         get {
1437                                 return expr;
1438                         }
1439                 }
1440
1441                 public override bool ContainsEmitWithAwait ()
1442                 {
1443                         return expr.ContainsEmitWithAwait ();
1444                 }
1445
1446                 protected Expression ResolveCommon (ResolveContext rc)
1447                 {
1448                         expr = expr.Resolve (rc);
1449                         if (expr == null)
1450                                 return null;
1451
1452                         ResolveProbeType (rc);
1453                         if (probe_type_expr == null)
1454                                 return this;
1455
1456                         if (probe_type_expr.IsStatic) {
1457                                 rc.Report.Error (7023, loc, "The second operand of `is' or `as' operator cannot be static type `{0}'",
1458                                         probe_type_expr.GetSignatureForError ());
1459                                 return null;
1460                         }
1461                         
1462                         if (expr.Type.IsPointer || probe_type_expr.IsPointer) {
1463                                 rc.Report.Error (244, loc, "The `{0}' operator cannot be applied to an operand of pointer type",
1464                                         OperatorName);
1465                                 return null;
1466                         }
1467
1468                         if (expr.Type == InternalType.AnonymousMethod || expr.Type == InternalType.MethodGroup) {
1469                                 rc.Report.Error (837, loc, "The `{0}' operator cannot be applied to a lambda expression, anonymous method, or method group",
1470                                         OperatorName);
1471                                 return null;
1472                         }
1473
1474                         return this;
1475                 }
1476
1477                 protected virtual void ResolveProbeType (ResolveContext rc)
1478                 {
1479                         probe_type_expr = ProbeType.ResolveAsType (rc);
1480                 }
1481
1482                 public override void EmitSideEffect (EmitContext ec)
1483                 {
1484                         expr.EmitSideEffect (ec);
1485                 }
1486
1487                 public override void FlowAnalysis (FlowAnalysisContext fc)
1488                 {
1489                         expr.FlowAnalysis (fc);
1490                 }
1491
1492                 public override bool HasConditionalAccess ()
1493                 {
1494                         return expr.HasConditionalAccess ();
1495                 }
1496
1497                 protected abstract string OperatorName { get; }
1498
1499                 protected override void CloneTo (CloneContext clonectx, Expression t)
1500                 {
1501                         Probe target = (Probe) t;
1502
1503                         target.expr = expr.Clone (clonectx);
1504                         target.ProbeType = ProbeType.Clone (clonectx);
1505                 }
1506
1507         }
1508
1509         /// <summary>
1510         ///   Implementation of the `is' operator.
1511         /// </summary>
1512         public class Is : Probe
1513         {
1514                 Nullable.Unwrap expr_unwrap;
1515                 MethodSpec number_mg;
1516                 Arguments number_args;
1517
1518                 public Is (Expression expr, Expression probe_type, Location l)
1519                         : base (expr, probe_type, l)
1520                 {
1521                 }
1522
1523                 protected override string OperatorName {
1524                         get { return "is"; }
1525                 }
1526
1527                 public LocalVariable Variable { get; set; }
1528
1529                 public override Expression CreateExpressionTree (ResolveContext ec)
1530                 {
1531                         if (Variable != null)
1532                                 throw new NotSupportedException ();
1533
1534                         Arguments args = Arguments.CreateForExpressionTree (ec, null,
1535                                 expr.CreateExpressionTree (ec),
1536                                 new TypeOf (probe_type_expr, loc));
1537
1538                         return CreateExpressionFactoryCall (ec, "TypeIs", args);
1539                 }
1540
1541                 Expression CreateConstantResult (ResolveContext rc, bool result)
1542                 {
1543                         if (result)
1544                                 rc.Report.Warning (183, 1, loc, "The given expression is always of the provided (`{0}') type",
1545                                         probe_type_expr.GetSignatureForError ());
1546                         else
1547                                 rc.Report.Warning (184, 1, loc, "The given expression is never of the provided (`{0}') type",
1548                                         probe_type_expr.GetSignatureForError ());
1549
1550                         var c = new BoolConstant (rc.BuiltinTypes, result, loc);
1551                         return expr.IsSideEffectFree ?
1552                                 ReducedExpression.Create (c, this) :
1553                                 new SideEffectConstant (c, this, loc);
1554                 }
1555
1556                 public override void Emit (EmitContext ec)
1557                 {
1558                         if (probe_type_expr == null) {
1559                                 if (ProbeType is WildcardPattern) {
1560                                         expr.EmitSideEffect (ec);
1561                                         ProbeType.Emit (ec);
1562                                 } else {
1563                                         EmitPatternMatch (ec);
1564                                 }
1565                                 return;
1566                         }
1567
1568                         EmitLoad (ec);
1569
1570                         if (expr_unwrap == null) {
1571                                 ec.EmitNull ();
1572                                 ec.Emit (OpCodes.Cgt_Un);
1573                         }
1574                 }
1575
1576                 public override void EmitBranchable (EmitContext ec, Label target, bool on_true)
1577                 {
1578                         if (probe_type_expr == null) {
1579                                 EmitPatternMatch (ec);
1580                         } else {
1581                                 EmitLoad (ec);
1582                         }
1583
1584                         ec.Emit (on_true ? OpCodes.Brtrue : OpCodes.Brfalse, target);
1585                 }
1586
1587                 void EmitPatternMatch (EmitContext ec)
1588                 {
1589                         var no_match = ec.DefineLabel ();
1590                         var end = ec.DefineLabel ();
1591
1592                         if (expr_unwrap != null) {
1593                                 expr_unwrap.EmitCheck (ec);
1594
1595                                 if (ProbeType.IsNull) {
1596                                         ec.EmitInt (0);
1597                                         ec.Emit (OpCodes.Ceq);
1598                                         return;
1599                                 }
1600
1601                                 ec.Emit (OpCodes.Brfalse_S, no_match);
1602                                 expr_unwrap.Emit (ec);
1603                                 ProbeType.Emit (ec);
1604                                 ec.Emit (OpCodes.Ceq);
1605                                 ec.Emit (OpCodes.Br_S, end);
1606                                 ec.MarkLabel (no_match);
1607                                 ec.EmitInt (0);
1608                                 ec.MarkLabel (end);
1609                                 return;
1610                         }
1611
1612                         if (number_args != null && number_args.Count == 3) {
1613                                 var ce = new CallEmitter ();
1614                                 ce.Emit (ec, number_mg, number_args, loc);
1615                                 return;
1616                         }
1617
1618                         var probe_type = ProbeType.Type;
1619
1620                         Expr.Emit (ec);
1621                         ec.Emit (OpCodes.Isinst, probe_type);
1622                         ec.Emit (OpCodes.Dup);
1623                         ec.Emit (OpCodes.Brfalse, no_match);
1624
1625                         bool complex_pattern = ProbeType is ComplexPatternExpression;
1626                         Label prev = ec.RecursivePatternLabel;
1627                         if (complex_pattern)
1628                                 ec.RecursivePatternLabel = ec.DefineLabel ();
1629
1630                         if (number_mg != null) {
1631                                 var ce = new CallEmitter ();
1632                                 ce.Emit (ec, number_mg, number_args, loc);
1633                         } else {
1634                                 if (TypeSpec.IsValueType (probe_type))
1635                                         ec.Emit (OpCodes.Unbox_Any, probe_type);
1636
1637                                 ProbeType.Emit (ec);
1638                                 if (complex_pattern) {
1639                                         ec.EmitInt (1);
1640                                 } else {
1641                                         ec.Emit (OpCodes.Ceq);
1642                                 }
1643                         }
1644                         ec.Emit (OpCodes.Br_S, end);
1645                         ec.MarkLabel (no_match);
1646
1647                         ec.Emit (OpCodes.Pop);
1648
1649                         if (complex_pattern)
1650                                 ec.MarkLabel (ec.RecursivePatternLabel);
1651
1652                         ec.RecursivePatternLabel = prev;
1653
1654                         ec.EmitInt (0);
1655                         ec.MarkLabel (end);
1656                 }
1657
1658                 void EmitLoad (EmitContext ec)
1659                 {
1660                         Label no_value_label = new Label ();
1661
1662                         if (expr_unwrap != null) {
1663                                 expr_unwrap.EmitCheck (ec);
1664
1665                                 if (Variable == null)
1666                                         return;
1667
1668                                 ec.Emit (OpCodes.Dup);
1669                                 no_value_label = ec.DefineLabel ();
1670                                 ec.Emit (OpCodes.Brfalse_S, no_value_label);
1671                                 expr_unwrap.Emit (ec);
1672                         } else {
1673                                 expr.Emit (ec);
1674
1675                                 // Only to make verifier happy
1676                                 if (probe_type_expr.IsGenericParameter && TypeSpec.IsValueType (expr.Type))
1677                                         ec.Emit (OpCodes.Box, expr.Type);
1678
1679                                 ec.Emit (OpCodes.Isinst, probe_type_expr);
1680                         }
1681
1682                         if (Variable != null) {
1683                                 bool value_on_stack;
1684                                 if (probe_type_expr.IsGenericParameter || probe_type_expr.IsNullableType) {
1685                                         ec.Emit (OpCodes.Dup);
1686                                         ec.Emit (OpCodes.Unbox_Any, probe_type_expr);
1687                                         value_on_stack = true;
1688                                 } else {
1689                                         value_on_stack = false;
1690                                 }
1691
1692                                 Variable.CreateBuilder (ec);
1693                                 Variable.EmitAssign (ec);
1694
1695                                 if (expr_unwrap != null) {
1696                                         ec.MarkLabel (no_value_label);
1697                                 } else if (!value_on_stack) {
1698                                         Variable.Emit (ec);
1699                                 }
1700                         }
1701                 }
1702
1703                 protected override Expression DoResolve (ResolveContext rc)
1704                 {
1705                         if (ResolveCommon (rc) == null)
1706                                 return null;
1707
1708                         type = rc.BuiltinTypes.Bool;
1709                         eclass = ExprClass.Value;
1710
1711                         if (probe_type_expr == null)
1712                                 return ResolveMatchingExpression (rc);
1713
1714                         var res = ResolveResultExpression (rc);
1715                         if (Variable != null) {
1716                                 if (res is Constant)
1717                                         throw new NotImplementedException ("constant in type pattern matching");
1718
1719                                 Variable.Type = probe_type_expr;
1720                                 var bc = rc as BlockContext;
1721                                 if (bc != null)
1722                                         Variable.PrepareAssignmentAnalysis (bc);
1723                         }
1724
1725                         return res;
1726                 }
1727
1728                 public override void FlowAnalysis (FlowAnalysisContext fc)
1729                 {
1730                         base.FlowAnalysis (fc);
1731
1732                         if (Variable != null)
1733                                 fc.SetVariableAssigned (Variable.VariableInfo, true);
1734                 }
1735
1736                 protected override void ResolveProbeType (ResolveContext rc)
1737                 {
1738                         if (!(ProbeType is TypeExpr) && rc.Module.Compiler.Settings.Version == LanguageVersion.Experimental) {
1739                                 if (ProbeType is PatternExpression) {
1740                                         ProbeType.Resolve (rc);
1741                                         return;
1742                                 }
1743
1744                                 //
1745                                 // Have to use session recording because we don't have reliable type probing
1746                                 // mechanism (similar issue as in attributes resolving)
1747                                 //
1748                                 // TODO: This is still wrong because ResolveAsType can be destructive
1749                                 //
1750                                 var type_printer = new SessionReportPrinter ();
1751                                 var prev_recorder = rc.Report.SetPrinter (type_printer);
1752
1753                                 probe_type_expr = ProbeType.ResolveAsType (rc);
1754                                 type_printer.EndSession ();
1755
1756                                 if (probe_type_expr != null) {
1757                                         type_printer.Merge (rc.Report.Printer);
1758                                         rc.Report.SetPrinter (prev_recorder);
1759                                         return;
1760                                 }
1761
1762                                 var vexpr = ProbeType as VarExpr;
1763                                 if (vexpr != null && vexpr.InferType (rc, expr)) {
1764                                         probe_type_expr = vexpr.Type;
1765                                         rc.Report.SetPrinter (prev_recorder);
1766                                         return;
1767                                 }
1768
1769                                 var expr_printer = new SessionReportPrinter ();
1770                                 rc.Report.SetPrinter (expr_printer);
1771                                 ProbeType = ProbeType.Resolve (rc);
1772                                 expr_printer.EndSession ();
1773
1774                                 if (ProbeType != null) {
1775                                         expr_printer.Merge (rc.Report.Printer);
1776                                 } else {
1777                                         type_printer.Merge (rc.Report.Printer);
1778                                 }
1779
1780                                 rc.Report.SetPrinter (prev_recorder);
1781                                 return;
1782                         }
1783
1784                         base.ResolveProbeType (rc);
1785                 }
1786
1787                 Expression ResolveMatchingExpression (ResolveContext rc)
1788                 {
1789                         var mc = ProbeType as Constant;
1790                         if (mc != null) {
1791                                 if (!Convert.ImplicitConversionExists (rc, ProbeType, Expr.Type)) {
1792                                         ProbeType.Error_ValueCannotBeConverted (rc, Expr.Type, false);
1793                                         return null;
1794                                 }
1795
1796                                 if (mc.IsNull)
1797                                         return new Binary (Binary.Operator.Equality, Expr, mc).Resolve (rc);
1798
1799                                 var c = Expr as Constant;
1800                                 if (c != null) {
1801                                         c = ConstantFold.BinaryFold (rc, Binary.Operator.Equality, c, mc, loc);
1802                                         if (c != null)
1803                                                 return c;
1804                                 }
1805
1806                                 if (Expr.Type.IsNullableType) {
1807                                         expr_unwrap = new Nullable.Unwrap (Expr);
1808                                         expr_unwrap.Resolve (rc);
1809                                         ProbeType = Convert.ImplicitConversion (rc, ProbeType, expr_unwrap.Type, loc);
1810                                 } else if (ProbeType.Type == Expr.Type) {
1811                                         // TODO: Better error handling
1812                                         return new Binary (Binary.Operator.Equality, Expr, mc, loc).Resolve (rc);
1813                                 } else if (ProbeType.Type.IsEnum || (ProbeType.Type.BuiltinType >= BuiltinTypeSpec.Type.Byte && ProbeType.Type.BuiltinType <= BuiltinTypeSpec.Type.Decimal)) {
1814                                         var helper = rc.Module.CreatePatterMatchingHelper ();
1815                                         number_mg = helper.NumberMatcher.Spec;
1816
1817                                         //
1818                                         // There are actually 3 arguments but the first one is already on the stack
1819                                         //
1820                                         number_args = new Arguments (3);
1821                                         if (!ProbeType.Type.IsEnum)
1822                                                 number_args.Add (new Argument (Expr));
1823
1824                                         number_args.Add (new Argument (Convert.ImplicitConversion (rc, ProbeType, rc.BuiltinTypes.Object, loc)));
1825                                         number_args.Add (new Argument (new BoolLiteral (rc.BuiltinTypes, ProbeType.Type.IsEnum, loc)));
1826                                 }
1827
1828                                 return this;
1829                         }
1830
1831                         if (ProbeType is PatternExpression) {
1832                                 if (!(ProbeType is WildcardPattern) && !Convert.ImplicitConversionExists (rc, ProbeType, Expr.Type)) {
1833                                         ProbeType.Error_ValueCannotBeConverted (rc, Expr.Type, false);
1834                                 }
1835
1836                                 return this;
1837                         }
1838
1839                         // TODO: Better error message
1840                         rc.Report.Error (150, ProbeType.Location, "A constant value is expected");
1841                         return this;
1842                 }
1843
1844                 Expression ResolveResultExpression (ResolveContext ec)
1845                 {
1846                         TypeSpec d = expr.Type;
1847                         bool d_is_nullable = false;
1848
1849                         //
1850                         // If E is a method group or the null literal, or if the type of E is a reference
1851                         // type or a nullable type and the value of E is null, the result is false
1852                         //
1853                         if (expr.IsNull || expr.eclass == ExprClass.MethodGroup)
1854                                 return CreateConstantResult (ec, false);
1855
1856                         if (d.IsNullableType) {
1857                                 var ut = Nullable.NullableInfo.GetUnderlyingType (d);
1858                                 if (!ut.IsGenericParameter) {
1859                                         d = ut;
1860                                         d_is_nullable = true;
1861                                 }
1862                         }
1863                                 
1864                         TypeSpec t = probe_type_expr;
1865                         bool t_is_nullable = false;
1866                         if (t.IsNullableType) {
1867                                 var ut = Nullable.NullableInfo.GetUnderlyingType (t);
1868                                 if (!ut.IsGenericParameter) {
1869                                         t = ut;
1870                                         t_is_nullable = true;
1871                                 }
1872                         }
1873
1874                         if (t.IsStruct) {
1875                                 if (d == t) {
1876                                         //
1877                                         // D and T are the same value types but D can be null
1878                                         //
1879                                         if (d_is_nullable && !t_is_nullable) {
1880                                                 expr_unwrap = Nullable.Unwrap.Create (expr, true);
1881                                                 return this;
1882                                         }
1883                                         
1884                                         //
1885                                         // The result is true if D and T are the same value types
1886                                         //
1887                                         return CreateConstantResult (ec, true);
1888                                 }
1889
1890                                 var tp = d as TypeParameterSpec;
1891                                 if (tp != null)
1892                                         return ResolveGenericParameter (ec, t, tp);
1893
1894                                 //
1895                                 // An unboxing conversion exists
1896                                 //
1897                                 if (Convert.ExplicitReferenceConversionExists (d, t))
1898                                         return this;
1899
1900                                 //
1901                                 // open generic type
1902                                 //
1903                                 if (d is InflatedTypeSpec && InflatedTypeSpec.ContainsTypeParameter (d))
1904                                         return this;
1905                         } else {
1906                                 var tps = t as TypeParameterSpec;
1907                                 if (tps != null)
1908                                         return ResolveGenericParameter (ec, d, tps);
1909
1910                                 if (t.BuiltinType == BuiltinTypeSpec.Type.Dynamic) {
1911                                         ec.Report.Warning (1981, 3, loc,
1912                                                 "Using `{0}' to test compatibility with `{1}' is identical to testing compatibility with `object'",
1913                                                 OperatorName, t.GetSignatureForError ());
1914                                 }
1915
1916                                 if (TypeManager.IsGenericParameter (d))
1917                                         return ResolveGenericParameter (ec, t, (TypeParameterSpec) d);
1918
1919                                 if (TypeSpec.IsValueType (d)) {
1920                                         if (Convert.ImplicitBoxingConversion (null, d, t) != null) {
1921                                                 if (d_is_nullable && !t_is_nullable) {
1922                                                         expr_unwrap = Nullable.Unwrap.Create (expr, false);
1923                                                         return this;
1924                                                 }
1925
1926                                                 return CreateConstantResult (ec, true);
1927                                         }
1928                                 } else {
1929                                         if (Convert.ImplicitReferenceConversionExists (d, t)) {
1930                                                 var c = expr as Constant;
1931                                                 if (c != null)
1932                                                         return CreateConstantResult (ec, !c.IsNull);
1933
1934                                                 //
1935                                                 // Do not optimize for imported type or dynamic type
1936                                                 //
1937                                                 if (d.MemberDefinition.IsImported && d.BuiltinType != BuiltinTypeSpec.Type.None &&
1938                                                         d.MemberDefinition.DeclaringAssembly != t.MemberDefinition.DeclaringAssembly) {
1939                                                         return this;
1940                                                 }
1941
1942                                                 if (d.BuiltinType == BuiltinTypeSpec.Type.Dynamic)
1943                                                         return this;
1944                                                 
1945                                                 //
1946                                                 // Turn is check into simple null check for implicitly convertible reference types
1947                                                 //
1948                                                 return ReducedExpression.Create (
1949                                                         new Binary (Binary.Operator.Inequality, expr, new NullLiteral (loc), Binary.State.UserOperatorsExcluded).Resolve (ec),
1950                                                         this).Resolve (ec);
1951                                         }
1952
1953                                         if (Convert.ExplicitReferenceConversionExists (d, t))
1954                                                 return this;
1955
1956                                         //
1957                                         // open generic type
1958                                         //
1959                                         if ((d is InflatedTypeSpec || d.IsArray) && InflatedTypeSpec.ContainsTypeParameter (d))
1960                                                 return this;
1961                                 }
1962                         }
1963
1964                         return CreateConstantResult (ec, false);
1965                 }
1966
1967                 Expression ResolveGenericParameter (ResolveContext ec, TypeSpec d, TypeParameterSpec t)
1968                 {
1969                         if (t.IsReferenceType) {
1970                                 if (d.IsStruct)
1971                                         return CreateConstantResult (ec, false);
1972                         }
1973
1974                         if (expr.Type.IsGenericParameter) {
1975                                 if (expr.Type == d && TypeSpec.IsValueType (t) && TypeSpec.IsValueType (d))
1976                                         return CreateConstantResult (ec, true);
1977
1978                                 expr = new BoxedCast (expr, d);
1979                         }
1980
1981                         return this;
1982                 }
1983                 
1984                 public override object Accept (StructuralVisitor visitor)
1985                 {
1986                         return visitor.Visit (this);
1987                 }
1988         }
1989
1990         class WildcardPattern : PatternExpression
1991         {
1992                 public WildcardPattern (Location loc)
1993                         : base (loc)
1994                 {
1995                 }
1996
1997                 protected override Expression DoResolve (ResolveContext rc)
1998                 {
1999                         eclass = ExprClass.Value;
2000                         type = rc.BuiltinTypes.Object;
2001                         return this;
2002                 }
2003
2004                 public override void Emit (EmitContext ec)
2005                 {
2006                         ec.EmitInt (1);
2007                 }
2008         }
2009
2010         class RecursivePattern : ComplexPatternExpression
2011         {
2012                 MethodGroupExpr operator_mg;
2013                 Arguments operator_args;
2014
2015                 public RecursivePattern (ATypeNameExpression typeExpresion, Arguments arguments, Location loc)
2016                         : base (typeExpresion, loc)
2017                 {
2018                         Arguments = arguments;
2019                 }
2020
2021                 public Arguments Arguments { get; private set; }
2022
2023                 protected override Expression DoResolve (ResolveContext rc)
2024                 {
2025                         type = TypeExpression.ResolveAsType (rc);
2026                         if (type == null)
2027                                 return null;
2028
2029                         var operators = MemberCache.GetUserOperator (type, Operator.OpType.Is, true);
2030                         if (operators == null) {
2031                                 Error_TypeDoesNotContainDefinition (rc, type, Operator.GetName (Operator.OpType.Is) + " operator");
2032                                 return null;
2033                         }
2034
2035                         var ops = FindMatchingOverloads (operators);
2036                         if (ops == null) {
2037                                 // TODO: better error message
2038                                 Error_TypeDoesNotContainDefinition (rc, type, Operator.GetName (Operator.OpType.Is) + " operator");
2039                                 return null;
2040                         }
2041
2042                         bool dynamic_args;
2043                         Arguments.Resolve (rc, out dynamic_args);
2044                         if (dynamic_args)
2045                                 throw new NotImplementedException ("dynamic argument");
2046
2047                         var op = FindBestOverload (rc, ops);
2048                         if (op == null) {
2049                                 // TODO: better error message
2050                                 Error_TypeDoesNotContainDefinition (rc, type, Operator.GetName (Operator.OpType.Is) + " operator");
2051                                 return null;
2052                         }
2053
2054                         var op_types = op.Parameters.Types;
2055                         operator_args = new Arguments (op_types.Length);
2056                         operator_args.Add (new Argument (new EmptyExpression (type)));
2057
2058                         for (int i = 0; i < Arguments.Count; ++i) {
2059                                 // TODO: Needs releasing optimization
2060                                 var lt = new LocalTemporary (op_types [i + 1]);
2061                                 operator_args.Add (new Argument (lt, Argument.AType.Out));
2062
2063                                 if (comparisons == null)
2064                                         comparisons = new Expression[Arguments.Count];
2065
2066                                 int arg_comp_index;
2067                                 Expression expr;
2068
2069                                 var arg = Arguments [i];
2070                                 var named = arg as NamedArgument;
2071                                 if (named != null) {
2072                                         arg_comp_index = op.Parameters.GetParameterIndexByName (named.Name) - 1;
2073                                         expr = Arguments [arg_comp_index].Expr;
2074                                 } else {
2075                                         arg_comp_index = i;
2076                                         expr = arg.Expr;
2077                                 }
2078
2079                                 comparisons [arg_comp_index] = ResolveComparison (rc, expr, lt);
2080                         }
2081
2082                         operator_mg = MethodGroupExpr.CreatePredefined (op, type, loc);
2083
2084                         eclass = ExprClass.Value;
2085                         return this;
2086                 }
2087
2088                 List<MethodSpec> FindMatchingOverloads (IList<MemberSpec> members)
2089                 {
2090                         int arg_count = Arguments.Count + 1;
2091                         List<MethodSpec> best = null;
2092                         foreach (MethodSpec method in members) {
2093                                 var pm = method.Parameters;
2094                                 if (pm.Count != arg_count)
2095                                         continue;
2096
2097                                 // TODO: Needs more thorough operator checks elsewhere to avoid doing this every time
2098                                 bool ok = true;
2099                                 for (int ii = 1; ii < pm.Count; ++ii) {
2100                                         if ((pm.FixedParameters [ii].ModFlags & Parameter.Modifier.OUT) == 0) {
2101                                                 ok = false;
2102                                                 break;
2103                                         }
2104                                 }
2105
2106                                 if (!ok)
2107                                         continue;
2108
2109                                 if (best == null)
2110                                         best = new List<MethodSpec> ();
2111
2112                                 best.Add (method);
2113                         }
2114
2115                         return best;
2116                 }
2117
2118                 MethodSpec FindBestOverload (ResolveContext rc, List<MethodSpec> methods)
2119                 {
2120                         for (int ii = 0; ii < Arguments.Count; ++ii) {
2121                                 var arg = Arguments [ii];
2122                                 var expr = arg.Expr;
2123                                 if (expr is WildcardPattern)
2124                                         continue;
2125
2126                                 var na = arg as NamedArgument;
2127                                 for (int i = 0; i < methods.Count; ++i) {
2128                                         var pd = methods [i].Parameters;
2129
2130                                         int index;
2131                                         if (na != null) {
2132                                                 index = pd.GetParameterIndexByName (na.Name);
2133                                                 if (index < 1) {
2134                                                         methods.RemoveAt (i--);
2135                                                         continue;
2136                                                 }
2137                                         } else {
2138                                                 index = ii + 1;
2139                                         }
2140
2141                                         var m = pd.Types [index];
2142                                         if (!Convert.ImplicitConversionExists (rc, expr, m))
2143                                                 methods.RemoveAt (i--);
2144                                 }
2145                         }
2146
2147                         if (methods.Count != 1)
2148                                 return null;
2149
2150                         return methods [0];
2151                 }
2152
2153                 public override void EmitBranchable (EmitContext ec, Label target, bool on_true)
2154                 {
2155                         operator_mg.EmitCall (ec, operator_args, false);
2156                         ec.Emit (OpCodes.Brfalse, target);
2157
2158                         base.EmitBranchable (ec, target, on_true);
2159                 }
2160
2161                 static Expression ResolveComparison (ResolveContext rc, Expression expr, LocalTemporary lt)
2162                 {
2163                         if (expr is WildcardPattern)
2164                                 return new EmptyExpression (expr.Type);
2165
2166                         var recursive = expr as RecursivePattern;
2167                         expr = Convert.ImplicitConversionRequired (rc, expr, lt.Type, expr.Location);
2168                         if (expr == null)
2169                                 return null;
2170
2171                         if (recursive != null) {
2172                                 recursive.SetParentInstance (lt);
2173                                 return expr;
2174                         }
2175
2176                         // TODO: Better error handling
2177                         return new Binary (Binary.Operator.Equality, lt, expr, expr.Location).Resolve (rc);
2178                 }
2179
2180                 public void SetParentInstance (Expression instance)
2181                 {
2182                         operator_args [0] = new Argument (instance);
2183                 }
2184         }
2185
2186         class PropertyPattern : ComplexPatternExpression
2187         {
2188                 LocalTemporary instance;
2189
2190                 public PropertyPattern (ATypeNameExpression typeExpresion, List<PropertyPatternMember> members, Location loc)
2191                         : base (typeExpresion, loc)
2192                 {
2193                         Members = members;
2194                 }
2195
2196                 public List<PropertyPatternMember> Members { get; private set; }
2197
2198                 protected override Expression DoResolve (ResolveContext rc)
2199                 {
2200                         type = TypeExpression.ResolveAsType (rc);
2201                         if (type == null)
2202                                 return null;
2203
2204                         comparisons = new Expression[Members.Count];
2205
2206                         // TODO: optimize when source is VariableReference, it'd save dup+pop
2207                         instance = new LocalTemporary (type);
2208
2209                         for (int i = 0; i < Members.Count; i++) {
2210                                 var lookup = Members [i];
2211
2212                                 var member = MemberLookup (rc, false, type, lookup.Name, 0, Expression.MemberLookupRestrictions.ExactArity, loc);
2213                                 if (member == null) {
2214                                         member = MemberLookup (rc, true, type, lookup.Name, 0, Expression.MemberLookupRestrictions.ExactArity, loc);
2215                                         if (member != null) {
2216                                                 Expression.ErrorIsInaccesible (rc, member.GetSignatureForError (), loc);
2217                                                 continue;
2218                                         }
2219                                 }
2220
2221                                 if (member == null) {
2222                                         Expression.Error_TypeDoesNotContainDefinition (rc, Location, Type, lookup.Name);
2223                                         continue;
2224                                 }
2225
2226                                 var pe = member as PropertyExpr;
2227                                 if (pe == null || member is FieldExpr) {
2228                                         rc.Report.Error (-2001, lookup.Location, "`{0}' is not a valid pattern member", lookup.Name);
2229                                         continue;
2230                                 }
2231
2232                                 // TODO: Obsolete checks
2233                                 // TODO: check accessibility
2234                                 if (pe != null && !pe.PropertyInfo.HasGet) {
2235                                         rc.Report.Error (-2002, lookup.Location, "Property `{0}.get' accessor is required", pe.GetSignatureForError ());
2236                                         continue;
2237                                 }
2238
2239                                 var expr = lookup.Expr.Resolve (rc);
2240                                 if (expr == null)
2241                                         continue;
2242
2243                                 var me = (MemberExpr)member;
2244                                 me.InstanceExpression = instance;
2245
2246                                 comparisons [i] = ResolveComparison (rc, expr, me);
2247                         }
2248
2249                         eclass = ExprClass.Value;
2250                         return this;
2251                 }
2252
2253                 static Expression ResolveComparison (ResolveContext rc, Expression expr, Expression instance)
2254                 {
2255                         if (expr is WildcardPattern)
2256                                 return new EmptyExpression (expr.Type);
2257
2258                         return new Is (instance, expr, expr.Location).Resolve (rc);
2259                 }
2260
2261                 public override void EmitBranchable (EmitContext ec, Label target, bool on_true)
2262                 {
2263                         instance.Store (ec);
2264
2265                         base.EmitBranchable (ec, target, on_true);
2266                 }
2267         }
2268
2269         class PropertyPatternMember
2270         {
2271                 public PropertyPatternMember (string name, Expression expr, Location loc)
2272                 {
2273                         Name = name;
2274                         Expr = expr;
2275                         Location = loc;
2276                 }
2277
2278                 public string Name { get; private set; }
2279                 public Expression Expr { get; private set; }
2280                 public Location Location { get; private set; }
2281         }
2282
2283         abstract class PatternExpression : Expression
2284         {
2285                 protected PatternExpression (Location loc)
2286                 {
2287                         this.loc = loc;
2288                 }
2289
2290                 public override Expression CreateExpressionTree (ResolveContext ec)
2291                 {
2292                         throw new NotImplementedException ();
2293                 }
2294         }
2295
2296         abstract class ComplexPatternExpression : PatternExpression
2297         {
2298                 protected Expression[] comparisons;
2299
2300                 protected ComplexPatternExpression (ATypeNameExpression typeExpresion, Location loc)
2301                         : base (loc)
2302                 {
2303                         TypeExpression = typeExpresion;
2304                 }
2305
2306                 public ATypeNameExpression TypeExpression { get; private set; }
2307
2308                 public override void Emit (EmitContext ec)
2309                 {
2310                         EmitBranchable (ec, ec.RecursivePatternLabel, false);
2311                 }
2312
2313                 public override void EmitBranchable (EmitContext ec, Label target, bool on_true)
2314                 {
2315                         if (comparisons != null) {
2316                                 foreach (var comp in comparisons) {
2317                                         comp.EmitBranchable (ec, target, false);
2318                                 }
2319                         }
2320                 }
2321         }
2322
2323         /// <summary>
2324         ///   Implementation of the `as' operator.
2325         /// </summary>
2326         public class As : Probe {
2327
2328                 public As (Expression expr, Expression probe_type, Location l)
2329                         : base (expr, probe_type, l)
2330                 {
2331                 }
2332
2333                 protected override string OperatorName {
2334                         get { return "as"; }
2335                 }
2336
2337                 public override Expression CreateExpressionTree (ResolveContext ec)
2338                 {
2339                         Arguments args = Arguments.CreateForExpressionTree (ec, null,
2340                                 expr.CreateExpressionTree (ec),
2341                                 new TypeOf (probe_type_expr, loc));
2342
2343                         return CreateExpressionFactoryCall (ec, "TypeAs", args);
2344                 }
2345
2346                 public override void Emit (EmitContext ec)
2347                 {
2348                         expr.Emit (ec);
2349
2350                         ec.Emit (OpCodes.Isinst, type);
2351
2352                         if (TypeManager.IsGenericParameter (type) || type.IsNullableType)
2353                                 ec.Emit (OpCodes.Unbox_Any, type);
2354                 }
2355
2356                 protected override Expression DoResolve (ResolveContext ec)
2357                 {
2358                         if (ResolveCommon (ec) == null)
2359                                 return null;
2360
2361                         type = probe_type_expr;
2362                         eclass = ExprClass.Value;
2363                         TypeSpec etype = expr.Type;
2364
2365                         if (!TypeSpec.IsReferenceType (type) && !type.IsNullableType) {
2366                                 if (TypeManager.IsGenericParameter (type)) {
2367                                         ec.Report.Error (413, loc,
2368                                                 "The `as' operator cannot be used with a non-reference type parameter `{0}'. Consider adding `class' or a reference type constraint",
2369                                                 probe_type_expr.GetSignatureForError ());
2370                                 } else {
2371                                         ec.Report.Error (77, loc,
2372                                                 "The `as' operator cannot be used with a non-nullable value type `{0}'",
2373                                                 type.GetSignatureForError ());
2374                                 }
2375                                 return null;
2376                         }
2377
2378                         if (expr.IsNull && type.IsNullableType) {
2379                                 return Nullable.LiftedNull.CreateFromExpression (ec, this);
2380                         }
2381
2382                         // If the compile-time type of E is dynamic, unlike the cast operator the as operator is not dynamically bound
2383                         if (etype.BuiltinType == BuiltinTypeSpec.Type.Dynamic) {
2384                                 return this;
2385                         }
2386                         
2387                         Expression e = Convert.ImplicitConversionStandard (ec, expr, type, loc);
2388                         if (e != null) {
2389                                 e = EmptyCast.Create (e, type);
2390                                 return ReducedExpression.Create (e, this).Resolve (ec);
2391                         }
2392
2393                         if (Convert.ExplicitReferenceConversionExists (etype, type)){
2394                                 if (TypeManager.IsGenericParameter (etype))
2395                                         expr = new BoxedCast (expr, etype);
2396
2397                                 return this;
2398                         }
2399
2400                         if (InflatedTypeSpec.ContainsTypeParameter (etype) || InflatedTypeSpec.ContainsTypeParameter (type)) {
2401                                 expr = new BoxedCast (expr, etype);
2402                                 return this;
2403                         }
2404
2405                         if (etype != InternalType.ErrorType) {
2406                                 ec.Report.Error (39, loc, "Cannot convert type `{0}' to `{1}' via a built-in conversion",
2407                                         etype.GetSignatureForError (), type.GetSignatureForError ());
2408                         }
2409
2410                         return null;
2411                 }
2412
2413                 public override object Accept (StructuralVisitor visitor)
2414                 {
2415                         return visitor.Visit (this);
2416                 }
2417         }
2418         
2419         //
2420         // This represents a typecast in the source language.
2421         //
2422         public class Cast : ShimExpression {
2423                 Expression target_type;
2424
2425                 public Cast (Expression cast_type, Expression expr, Location loc)
2426                         : base (expr)
2427                 {
2428                         this.target_type = cast_type;
2429                         this.loc = loc;
2430                 }
2431
2432                 public Expression TargetType {
2433                         get { return target_type; }
2434                 }
2435
2436                 protected override Expression DoResolve (ResolveContext ec)
2437                 {
2438                         expr = expr.Resolve (ec);
2439                         if (expr == null)
2440                                 return null;
2441
2442                         type = target_type.ResolveAsType (ec);
2443                         if (type == null)
2444                                 return null;
2445
2446                         if (type.IsStatic) {
2447                                 ec.Report.Error (716, loc, "Cannot convert to static type `{0}'", type.GetSignatureForError ());
2448                                 return null;
2449                         }
2450
2451                         if (type.IsPointer && !ec.IsUnsafe) {
2452                                 UnsafeError (ec, loc);
2453                         }
2454
2455                         eclass = ExprClass.Value;
2456                         
2457                         Constant c = expr as Constant;
2458                         if (c != null) {
2459                                 c = c.Reduce (ec, type);
2460                                 if (c != null)
2461                                         return c;
2462                         }
2463
2464                         var res = Convert.ExplicitConversion (ec, expr, type, loc);
2465                         if (res == expr)
2466                                 return EmptyCast.Create (res, type);
2467
2468                         return res;
2469                 }
2470                 
2471                 protected override void CloneTo (CloneContext clonectx, Expression t)
2472                 {
2473                         Cast target = (Cast) t;
2474
2475                         target.target_type = target_type.Clone (clonectx);
2476                         target.expr = expr.Clone (clonectx);
2477                 }
2478
2479                 public override object Accept (StructuralVisitor visitor)
2480                 {
2481                         return visitor.Visit (this);
2482                 }
2483         }
2484
2485         public class ImplicitCast : ShimExpression
2486         {
2487                 bool arrayAccess;
2488
2489                 public ImplicitCast (Expression expr, TypeSpec target, bool arrayAccess)
2490                         : base (expr)
2491                 {
2492                         this.loc = expr.Location;
2493                         this.type = target;
2494                         this.arrayAccess = arrayAccess;
2495                 }
2496
2497                 protected override Expression DoResolve (ResolveContext ec)
2498                 {
2499                         expr = expr.Resolve (ec);
2500                         if (expr == null)
2501                                 return null;
2502
2503                         if (arrayAccess)
2504                                 expr = ConvertExpressionToArrayIndex (ec, expr);
2505                         else
2506                                 expr = Convert.ImplicitConversionRequired (ec, expr, type, loc);
2507
2508                         return expr;
2509                 }
2510         }
2511
2512         public class DeclarationExpression : Expression, IMemoryLocation
2513         {
2514                 LocalVariableReference lvr;
2515
2516                 public DeclarationExpression (FullNamedExpression variableType, LocalVariable variable)
2517                 {
2518                         VariableType = variableType;
2519                         Variable = variable;
2520                         this.loc = variable.Location;
2521                 }
2522
2523                 public LocalVariable Variable { get; set; }
2524                 public Expression Initializer { get; set; }
2525                 public FullNamedExpression VariableType { get; set; }
2526
2527                 public void AddressOf (EmitContext ec, AddressOp mode)
2528                 {
2529                         Variable.CreateBuilder (ec);
2530
2531                         if (Initializer != null) {
2532                                 lvr.EmitAssign (ec, Initializer, false, false);
2533                         }
2534
2535                         lvr.AddressOf (ec, mode);
2536                 }
2537
2538                 protected override void CloneTo (CloneContext clonectx, Expression t)
2539                 {
2540                         var target = (DeclarationExpression) t;
2541
2542                         target.VariableType = (FullNamedExpression) VariableType.Clone (clonectx);
2543
2544                         if (Initializer != null)
2545                                 target.Initializer = Initializer.Clone (clonectx);
2546                 }
2547
2548                 public override Expression CreateExpressionTree (ResolveContext rc)
2549                 {
2550                         rc.Report.Error (8046, loc, "An expression tree cannot contain a declaration expression");
2551                         return null;
2552                 }
2553
2554                 bool DoResolveCommon (ResolveContext rc)
2555                 {
2556                         var var_expr = VariableType as VarExpr;
2557                         if (var_expr != null) {
2558                                 type = InternalType.VarOutType;
2559                         } else {
2560                                 type = VariableType.ResolveAsType (rc);
2561                                 if (type == null)
2562                                         return false;
2563                         }
2564
2565                         if (Initializer != null) {
2566                                 Initializer = Initializer.Resolve (rc);
2567
2568                                 if (var_expr != null && Initializer != null && var_expr.InferType (rc, Initializer)) {
2569                                         type = var_expr.Type;
2570                                 }
2571                         }
2572
2573                         Variable.Type = type;
2574                         lvr = new LocalVariableReference (Variable, loc);
2575
2576                         eclass = ExprClass.Variable;
2577                         return true;
2578                 }
2579
2580                 protected override Expression DoResolve (ResolveContext rc)
2581                 {
2582                         if (DoResolveCommon (rc))
2583                                 lvr.Resolve (rc);
2584
2585                         return this;
2586                 }
2587
2588                 public override Expression DoResolveLValue (ResolveContext rc, Expression right_side)
2589                 {
2590                         if (lvr == null && DoResolveCommon (rc))
2591                                 lvr.ResolveLValue (rc, right_side);
2592
2593                         return this;
2594                 }
2595
2596                 public override void Emit (EmitContext ec)
2597                 {
2598                         throw new NotImplementedException ();
2599                 }
2600         }
2601         
2602         //
2603         // C# 2.0 Default value expression
2604         //
2605         public class DefaultValueExpression : Expression
2606         {
2607                 Expression expr;
2608
2609                 public DefaultValueExpression (Expression expr, Location loc)
2610                 {
2611                         this.expr = expr;
2612                         this.loc = loc;
2613                 }
2614
2615                 public Expression Expr {
2616                         get {
2617                                 return this.expr; 
2618                         }
2619                 }
2620
2621                 public override bool IsSideEffectFree {
2622                         get {
2623                                 return true;
2624                         }
2625                 }
2626
2627                 public override bool ContainsEmitWithAwait ()
2628                 {
2629                         return false;
2630                 }
2631
2632                 public override Expression CreateExpressionTree (ResolveContext ec)
2633                 {
2634                         Arguments args = new Arguments (2);
2635                         args.Add (new Argument (this));
2636                         args.Add (new Argument (new TypeOf (type, loc)));
2637                         return CreateExpressionFactoryCall (ec, "Constant", args);
2638                 }
2639
2640                 protected override Expression DoResolve (ResolveContext ec)
2641                 {
2642                         type = expr.ResolveAsType (ec);
2643                         if (type == null)
2644                                 return null;
2645
2646                         if (type.IsStatic) {
2647                                 ec.Report.Error (-244, loc, "The `default value' operator cannot be applied to an operand of a static type");
2648                         }
2649
2650                         if (type.IsPointer)
2651                                 return new NullLiteral (Location).ConvertImplicitly (type);
2652
2653                         if (TypeSpec.IsReferenceType (type))
2654                                 return new NullConstant (type, loc);
2655
2656                         Constant c = New.Constantify (type, expr.Location);
2657                         if (c != null)
2658                                 return c;
2659
2660                         eclass = ExprClass.Variable;
2661                         return this;
2662                 }
2663
2664                 public override void Emit (EmitContext ec)
2665                 {
2666                         LocalTemporary temp_storage = new LocalTemporary(type);
2667
2668                         temp_storage.AddressOf(ec, AddressOp.LoadStore);
2669                         ec.Emit(OpCodes.Initobj, type);
2670                         temp_storage.Emit(ec);
2671                         temp_storage.Release (ec);
2672                 }
2673
2674 #if !STATIC
2675                 public override SLE.Expression MakeExpression (BuilderContext ctx)
2676                 {
2677                         return SLE.Expression.Default (type.GetMetaInfo ());
2678                 }
2679 #endif
2680
2681                 protected override void CloneTo (CloneContext clonectx, Expression t)
2682                 {
2683                         DefaultValueExpression target = (DefaultValueExpression) t;
2684                         
2685                         target.expr = expr.Clone (clonectx);
2686                 }
2687                 
2688                 public override object Accept (StructuralVisitor visitor)
2689                 {
2690                         return visitor.Visit (this);
2691                 }
2692         }
2693
2694         /// <summary>
2695         ///   Binary operators
2696         /// </summary>
2697         public class Binary : Expression, IDynamicBinder
2698         {
2699                 public class PredefinedOperator
2700                 {
2701                         protected readonly TypeSpec left;
2702                         protected readonly TypeSpec right;
2703                         protected readonly TypeSpec left_unwrap;
2704                         protected readonly TypeSpec right_unwrap;
2705                         public readonly Operator OperatorsMask;
2706                         public TypeSpec ReturnType;
2707
2708                         public PredefinedOperator (TypeSpec ltype, TypeSpec rtype, Operator op_mask)
2709                                 : this (ltype, rtype, op_mask, ltype)
2710                         {
2711                         }
2712
2713                         public PredefinedOperator (TypeSpec type, Operator op_mask, TypeSpec return_type)
2714                                 : this (type, type, op_mask, return_type)
2715                         {
2716                         }
2717
2718                         public PredefinedOperator (TypeSpec type, Operator op_mask)
2719                                 : this (type, type, op_mask, type)
2720                         {
2721                         }
2722
2723                         public PredefinedOperator (TypeSpec ltype, TypeSpec rtype, Operator op_mask, TypeSpec return_type)
2724                         {
2725                                 if ((op_mask & Operator.ValuesOnlyMask) != 0)
2726                                         throw new InternalErrorException ("Only masked values can be used");
2727
2728                                 if ((op_mask & Operator.NullableMask) != 0) {
2729                                         left_unwrap = Nullable.NullableInfo.GetUnderlyingType (ltype);
2730                                         right_unwrap = Nullable.NullableInfo.GetUnderlyingType (rtype);
2731                                 } else {
2732                                         left_unwrap = ltype;
2733                                         right_unwrap = rtype;
2734                                 }
2735
2736                                 this.left = ltype;
2737                                 this.right = rtype;
2738                                 this.OperatorsMask = op_mask;
2739                                 this.ReturnType = return_type;
2740                         }
2741
2742                         public bool IsLifted {
2743                                 get {
2744                                         return (OperatorsMask & Operator.NullableMask) != 0;
2745                                 }
2746                         }
2747
2748                         public virtual Expression ConvertResult (ResolveContext rc, Binary b)
2749                         {
2750                                 Constant c;
2751
2752                                 var left_expr = b.left;
2753                                 var right_expr = b.right;
2754
2755                                 b.type = ReturnType;
2756
2757                                 if (IsLifted) {
2758                                         if (rc.HasSet (ResolveContext.Options.ExpressionTreeConversion)) {
2759                                                 b.left = Convert.ImplicitConversion (rc, b.left, left, b.left.Location);
2760                                                 b.right = Convert.ImplicitConversion (rc, b.right, right, b.right.Location);
2761                                         }
2762
2763                                         if (right_expr.IsNull) {
2764                                                 if ((b.oper & Operator.EqualityMask) != 0) {
2765                                                         if (!left_expr.Type.IsNullableType && BuiltinTypeSpec.IsPrimitiveType (left_expr.Type))
2766                                                                 return b.CreateLiftedValueTypeResult (rc, left_expr.Type);
2767                                                 } else if ((b.oper & Operator.BitwiseMask) != 0) {
2768                                                         if (left_unwrap.BuiltinType != BuiltinTypeSpec.Type.Bool)
2769                                                                 return Nullable.LiftedNull.CreateFromExpression (rc, b);
2770                                                 } else {
2771                                                         b.left = Convert.ImplicitConversion (rc, b.left, left, b.left.Location);
2772                                                         b.right = Convert.ImplicitConversion (rc, b.right, right, b.right.Location);
2773
2774                                                         if ((b.Oper & (Operator.ArithmeticMask | Operator.ShiftMask)) != 0)
2775                                                                 return Nullable.LiftedNull.CreateFromExpression (rc, b);
2776
2777                                                         return b.CreateLiftedValueTypeResult (rc, left);
2778                                                 }
2779                                         } else if (left_expr.IsNull) {
2780                                                 if ((b.oper & Operator.EqualityMask) != 0) {
2781                                                         if (!right_expr.Type.IsNullableType && BuiltinTypeSpec.IsPrimitiveType (right_expr.Type))
2782                                                                 return b.CreateLiftedValueTypeResult (rc, right_expr.Type);
2783                                                 } else if ((b.oper & Operator.BitwiseMask) != 0) {
2784                                                         if (right_unwrap.BuiltinType != BuiltinTypeSpec.Type.Bool)
2785                                                                 return Nullable.LiftedNull.CreateFromExpression (rc, b);
2786                                                 } else {
2787                                                         b.left = Convert.ImplicitConversion (rc, b.left, left, b.left.Location);
2788                                                         b.right = Convert.ImplicitConversion (rc, b.right, right, b.right.Location);
2789
2790                                                         if ((b.Oper & (Operator.ArithmeticMask | Operator.ShiftMask)) != 0)
2791                                                                 return Nullable.LiftedNull.CreateFromExpression (rc, b);
2792
2793                                                         return b.CreateLiftedValueTypeResult (rc, right);
2794                                                 }
2795                                         }
2796                                 }
2797
2798                                 //
2799                                 // A user operators does not support multiple user conversions, but decimal type
2800                                 // is considered to be predefined type therefore we apply predefined operators rules
2801                                 // and then look for decimal user-operator implementation
2802                                 //
2803                                 if (left.BuiltinType == BuiltinTypeSpec.Type.Decimal) {
2804                                         b.left = Convert.ImplicitConversion (rc, b.left, left, b.left.Location);
2805                                         b.right = Convert.ImplicitConversion (rc, b.right, right, b.right.Location);
2806
2807                                         return b.ResolveUserOperator (rc, b.left, b.right);
2808                                 }
2809
2810                                 c = right_expr as Constant;
2811                                 if (c != null) {
2812                                         if (c.IsDefaultValue) {
2813                                                 //
2814                                                 // Optimizes
2815                                                 // 
2816                                                 // (expr + 0) to expr
2817                                                 // (expr - 0) to expr
2818                                                 // (bool? | false) to bool?
2819                                                 //
2820                                                 if (b.oper == Operator.Addition || b.oper == Operator.Subtraction ||
2821                                                         (b.oper == Operator.BitwiseOr && left_unwrap.BuiltinType == BuiltinTypeSpec.Type.Bool && c is BoolConstant)) {
2822                                                         b.left = Convert.ImplicitConversion (rc, b.left, left, b.left.Location);
2823                                                         return ReducedExpression.Create (b.left, b).Resolve (rc);
2824                                                 }
2825
2826                                                 //
2827                                                 // Optimizes (value &/&& 0) to 0
2828                                                 //
2829                                                 if ((b.oper == Operator.BitwiseAnd || b.oper == Operator.LogicalAnd) && !IsLifted) {
2830                                                         Constant side_effect = new SideEffectConstant (c, b.left, c.Location);
2831                                                         return ReducedExpression.Create (side_effect, b);
2832                                                 }
2833                                         } else {
2834                                                 //
2835                                                 // Optimizes (bool? & true) to bool?
2836                                                 //
2837                                                 if (IsLifted && left_unwrap.BuiltinType == BuiltinTypeSpec.Type.Bool && b.oper == Operator.BitwiseAnd) {
2838                                                         return ReducedExpression.Create (b.left, b).Resolve (rc);
2839                                                 }
2840                                         }
2841
2842                                         if ((b.oper == Operator.Multiply || b.oper == Operator.Division) && c.IsOneInteger)
2843                                                 return ReducedExpression.Create (b.left, b).Resolve (rc);
2844
2845                                         if ((b.oper & Operator.ShiftMask) != 0 && c is IntConstant) {
2846                                                 b.right = new IntConstant (rc.BuiltinTypes, ((IntConstant) c).Value & GetShiftMask (left_unwrap), b.right.Location);
2847                                         }
2848                                 }
2849
2850                                 c = b.left as Constant;
2851                                 if (c != null) {
2852                                         if (c.IsDefaultValue) {
2853                                                 //
2854                                                 // Optimizes
2855                                                 // 
2856                                                 // (0 + expr) to expr
2857                                                 // (false | bool?) to bool?
2858                                                 //
2859                                                 if (b.oper == Operator.Addition ||
2860                                                         (b.oper == Operator.BitwiseOr && right_unwrap.BuiltinType == BuiltinTypeSpec.Type.Bool && c is BoolConstant)) {
2861                                                         b.right = Convert.ImplicitConversion (rc, b.right, right, b.right.Location);
2862                                                         return ReducedExpression.Create (b.right, b).Resolve (rc);
2863                                                 }
2864
2865                                                 //
2866                                                 // Optimizes (false && expr) to false
2867                                                 //
2868                                                 if (b.oper == Operator.LogicalAnd && c.Type.BuiltinType == BuiltinTypeSpec.Type.Bool) {
2869                                                         // No rhs side-effects
2870                                                         Expression.Warning_UnreachableExpression (rc, b.right.StartLocation);
2871                                                         return ReducedExpression.Create (c, b);
2872                                                 }
2873
2874                                                 //
2875                                                 // Optimizes (0 & value) to 0
2876                                                 //
2877                                                 if (b.oper == Operator.BitwiseAnd && !IsLifted) {
2878                                                         Constant side_effect = new SideEffectConstant (c, b.right, c.Location);
2879                                                         return ReducedExpression.Create (side_effect, b);
2880                                                 }
2881                                         } else {
2882                                                 //
2883                                                 // Optimizes (true & bool?) to bool?
2884                                                 //
2885                                                 if (IsLifted && left_unwrap.BuiltinType == BuiltinTypeSpec.Type.Bool && b.oper == Operator.BitwiseAnd) {
2886                                                         return ReducedExpression.Create (b.right, b).Resolve (rc);
2887                                                 }
2888
2889                                                 //
2890                                                 // Optimizes (true || expr) to true
2891                                                 //
2892                                                 if (b.oper == Operator.LogicalOr && c.Type.BuiltinType == BuiltinTypeSpec.Type.Bool) {
2893                                                         // No rhs side-effects
2894                                                         Expression.Warning_UnreachableExpression (rc, b.right.StartLocation);
2895                                                         return ReducedExpression.Create (c, b);
2896                                                 }
2897                                         }
2898
2899                                         if (b.oper == Operator.Multiply && c.IsOneInteger)
2900                                                 return ReducedExpression.Create (b.right, b).Resolve (rc);
2901                                 }
2902
2903                                 if (IsLifted) {
2904                                         var lifted = new Nullable.LiftedBinaryOperator (b);
2905
2906                                         TypeSpec ltype, rtype;
2907                                         if (b.left.Type.IsNullableType) {
2908                                                 lifted.UnwrapLeft = new Nullable.Unwrap (b.left);
2909                                                 ltype = left_unwrap;
2910                                         } else {
2911                                                 ltype = left;
2912                                         }
2913
2914                                         if (b.right.Type.IsNullableType) {
2915                                                 lifted.UnwrapRight = new Nullable.Unwrap (b.right);
2916                                                 rtype = right_unwrap;
2917                                         } else {
2918                                                 rtype = right;
2919                                         }
2920
2921                                         lifted.Left = b.left.IsNull ?
2922                                                 Nullable.LiftedNull.Create (ltype, b.left.Location) :
2923                                                 Convert.ImplicitConversion (rc, lifted.UnwrapLeft ?? b.left, ltype, b.left.Location);
2924
2925                                         lifted.Right = b.right.IsNull ?
2926                                                 Nullable.LiftedNull.Create (rtype, b.right.Location) :
2927                                                 Convert.ImplicitConversion (rc, lifted.UnwrapRight ?? b.right, rtype, b.right.Location);
2928
2929                                         return lifted.Resolve (rc);
2930                                 }
2931
2932                                 b.left = Convert.ImplicitConversion (rc, b.left, left, b.left.Location);
2933                                 b.right = Convert.ImplicitConversion (rc, b.right, right, b.right.Location);
2934
2935                                 return b;
2936                         }
2937
2938                         public bool IsPrimitiveApplicable (TypeSpec ltype, TypeSpec rtype)
2939                         {
2940                                 //
2941                                 // We are dealing with primitive types only
2942                                 //
2943                                 return left == ltype && ltype == rtype;
2944                         }
2945
2946                         public virtual bool IsApplicable (ResolveContext ec, Expression lexpr, Expression rexpr)
2947                         {
2948                                 // Quick path
2949                                 if (left == lexpr.Type && right == rexpr.Type)
2950                                         return true;
2951
2952                                 return Convert.ImplicitConversionExists (ec, lexpr, left) &&
2953                                         Convert.ImplicitConversionExists (ec, rexpr, right);
2954                         }
2955
2956                         public PredefinedOperator ResolveBetterOperator (ResolveContext ec, PredefinedOperator best_operator)
2957                         {
2958                                 if ((OperatorsMask & Operator.DecomposedMask) != 0)
2959                                         return best_operator;
2960
2961                                 if ((best_operator.OperatorsMask & Operator.DecomposedMask) != 0)
2962                                         return this;
2963
2964                                 int result = 0;
2965                                 if (left != null && best_operator.left != null) {
2966                                         result = OverloadResolver.BetterTypeConversion (ec, best_operator.left_unwrap, left_unwrap);
2967                                 }
2968
2969                                 //
2970                                 // When second argument is same as the first one, the result is same
2971                                 //
2972                                 if (right != null && (left != right || best_operator.left != best_operator.right)) {
2973                                         result |= OverloadResolver.BetterTypeConversion (ec, best_operator.right_unwrap, right_unwrap);
2974                                 }
2975
2976                                 if (result == 0 || result > 2)
2977                                         return null;
2978
2979                                 return result == 1 ? best_operator : this;
2980                         }
2981                 }
2982
2983                 sealed class PredefinedStringOperator : PredefinedOperator
2984                 {
2985                         public PredefinedStringOperator (TypeSpec type, Operator op_mask, TypeSpec retType)
2986                                 : base (type, type, op_mask, retType)
2987                         {
2988                         }
2989
2990                         public PredefinedStringOperator (TypeSpec ltype, TypeSpec rtype, Operator op_mask, TypeSpec retType)
2991                                 : base (ltype, rtype, op_mask, retType)
2992                         {
2993                         }
2994
2995                         public override Expression ConvertResult (ResolveContext ec, Binary b)
2996                         {
2997                                 //
2998                                 // Use original expression for nullable arguments
2999                                 //
3000                                 Nullable.Unwrap unwrap = b.left as Nullable.Unwrap;
3001                                 if (unwrap != null)
3002                                         b.left = unwrap.Original;
3003
3004                                 unwrap = b.right as Nullable.Unwrap;
3005                                 if (unwrap != null)
3006                                         b.right = unwrap.Original;
3007
3008                                 b.left = Convert.ImplicitConversion (ec, b.left, left, b.left.Location);
3009                                 b.right = Convert.ImplicitConversion (ec, b.right, right, b.right.Location);
3010
3011                                 //
3012                                 // Start a new concat expression using converted expression
3013                                 //
3014                                 return StringConcat.Create (ec, b.left, b.right, b.loc);
3015                         }
3016                 }
3017
3018                 sealed class PredefinedEqualityOperator : PredefinedOperator
3019                 {
3020                         MethodSpec equal_method, inequal_method;
3021
3022                         public PredefinedEqualityOperator (TypeSpec arg, TypeSpec retType)
3023                                 : base (arg, arg, Operator.EqualityMask, retType)
3024                         {
3025                         }
3026
3027                         public override Expression ConvertResult (ResolveContext ec, Binary b)
3028                         {
3029                                 b.type = ReturnType;
3030
3031                                 b.left = Convert.ImplicitConversion (ec, b.left, left, b.left.Location);
3032                                 b.right = Convert.ImplicitConversion (ec, b.right, right, b.right.Location);
3033
3034                                 Arguments args = new Arguments (2);
3035                                 args.Add (new Argument (b.left));
3036                                 args.Add (new Argument (b.right));
3037
3038                                 MethodSpec method;
3039                                 if (b.oper == Operator.Equality) {
3040                                         if (equal_method == null) {
3041                                                 if (left.BuiltinType == BuiltinTypeSpec.Type.String)
3042                                                         equal_method = ec.Module.PredefinedMembers.StringEqual.Resolve (b.loc);
3043                                                 else if (left.BuiltinType == BuiltinTypeSpec.Type.Delegate)
3044                                                         equal_method = ec.Module.PredefinedMembers.DelegateEqual.Resolve (b.loc);
3045                                                 else
3046                                                         throw new NotImplementedException (left.GetSignatureForError ());
3047                                         }
3048
3049                                         method = equal_method;
3050                                 } else {
3051                                         if (inequal_method == null) {
3052                                                 if (left.BuiltinType == BuiltinTypeSpec.Type.String)
3053                                                         inequal_method = ec.Module.PredefinedMembers.StringInequal.Resolve (b.loc);
3054                                                 else if (left.BuiltinType == BuiltinTypeSpec.Type.Delegate)
3055                                                         inequal_method = ec.Module.PredefinedMembers.DelegateInequal.Resolve (b.loc);
3056                                                 else
3057                                                         throw new NotImplementedException (left.GetSignatureForError ());
3058                                         }
3059
3060                                         method = inequal_method;
3061                                 }
3062
3063                                 return new UserOperatorCall (method, args, b.CreateExpressionTree, b.loc);
3064                         }
3065                 }
3066
3067                 class PredefinedPointerOperator : PredefinedOperator
3068                 {
3069                         public PredefinedPointerOperator (TypeSpec ltype, TypeSpec rtype, Operator op_mask)
3070                                 : base (ltype, rtype, op_mask)
3071                         {
3072                         }
3073
3074                         public PredefinedPointerOperator (TypeSpec ltype, TypeSpec rtype, Operator op_mask, TypeSpec retType)
3075                                 : base (ltype, rtype, op_mask, retType)
3076                         {
3077                         }
3078
3079                         public PredefinedPointerOperator (TypeSpec type, Operator op_mask, TypeSpec return_type)
3080                                 : base (type, op_mask, return_type)
3081                         {
3082                         }
3083
3084                         public override bool IsApplicable (ResolveContext ec, Expression lexpr, Expression rexpr)
3085                         {
3086                                 if (left == null) {
3087                                         if (!lexpr.Type.IsPointer)
3088                                                 return false;
3089                                 } else {
3090                                         if (!Convert.ImplicitConversionExists (ec, lexpr, left))
3091                                                 return false;
3092                                 }
3093
3094                                 if (right == null) {
3095                                         if (!rexpr.Type.IsPointer)
3096                                                 return false;
3097                                 } else {
3098                                         if (!Convert.ImplicitConversionExists (ec, rexpr, right))
3099                                                 return false;
3100                                 }
3101
3102                                 return true;
3103                         }
3104
3105                         public override Expression ConvertResult (ResolveContext ec, Binary b)
3106                         {
3107                                 if (left != null) {
3108                                         b.left = EmptyCast.Create (b.left, left);
3109                                 } else if (right != null) {
3110                                         b.right = EmptyCast.Create (b.right, right);
3111                                 }
3112
3113                                 TypeSpec r_type = ReturnType;
3114                                 Expression left_arg, right_arg;
3115                                 if (r_type == null) {
3116                                         if (left == null) {
3117                                                 left_arg = b.left;
3118                                                 right_arg = b.right;
3119                                                 r_type = b.left.Type;
3120                                         } else {
3121                                                 left_arg = b.right;
3122                                                 right_arg = b.left;
3123                                                 r_type = b.right.Type;
3124                                         }
3125                                 } else {
3126                                         left_arg = b.left;
3127                                         right_arg = b.right;
3128                                 }
3129
3130                                 return new PointerArithmetic (b.oper, left_arg, right_arg, r_type, b.loc).Resolve (ec);
3131                         }
3132                 }
3133
3134                 [Flags]
3135                 public enum Operator {
3136                         Multiply        = 0 | ArithmeticMask,
3137                         Division        = 1 | ArithmeticMask,
3138                         Modulus         = 2 | ArithmeticMask,
3139                         Addition        = 3 | ArithmeticMask | AdditionMask,
3140                         Subtraction = 4 | ArithmeticMask | SubtractionMask,
3141
3142                         LeftShift       = 5 | ShiftMask,
3143                         RightShift      = 6 | ShiftMask,
3144
3145                         LessThan        = 7 | ComparisonMask | RelationalMask,
3146                         GreaterThan     = 8 | ComparisonMask | RelationalMask,
3147                         LessThanOrEqual         = 9 | ComparisonMask | RelationalMask,
3148                         GreaterThanOrEqual      = 10 | ComparisonMask | RelationalMask,
3149                         Equality        = 11 | ComparisonMask | EqualityMask,
3150                         Inequality      = 12 | ComparisonMask | EqualityMask,
3151
3152                         BitwiseAnd      = 13 | BitwiseMask,
3153                         ExclusiveOr     = 14 | BitwiseMask,
3154                         BitwiseOr       = 15 | BitwiseMask,
3155
3156                         LogicalAnd      = 16 | LogicalMask,
3157                         LogicalOr       = 17 | LogicalMask,
3158
3159                         //
3160                         // Operator masks
3161                         //
3162                         ValuesOnlyMask  = ArithmeticMask - 1,
3163                         ArithmeticMask  = 1 << 5,
3164                         ShiftMask               = 1 << 6,
3165                         ComparisonMask  = 1 << 7,
3166                         EqualityMask    = 1 << 8,
3167                         BitwiseMask             = 1 << 9,
3168                         LogicalMask             = 1 << 10,
3169                         AdditionMask    = 1 << 11,
3170                         SubtractionMask = 1 << 12,
3171                         RelationalMask  = 1 << 13,
3172
3173                         DecomposedMask  = 1 << 19,
3174                         NullableMask    = 1 << 20
3175                 }
3176
3177                 [Flags]
3178                 public enum State : byte
3179                 {
3180                         None = 0,
3181                         Compound = 1 << 1,
3182                         UserOperatorsExcluded = 1 << 2
3183                 }
3184
3185                 readonly Operator oper;
3186                 Expression left, right;
3187                 State state;
3188                 ConvCast.Mode enum_conversion;
3189
3190                 public Binary (Operator oper, Expression left, Expression right, bool isCompound)
3191                         : this (oper, left, right, State.Compound)
3192                 {
3193                 }
3194
3195                 public Binary (Operator oper, Expression left, Expression right, State state)
3196                         : this (oper, left, right)
3197                 {
3198                         this.state = state;
3199                 }
3200
3201                 public Binary (Operator oper, Expression left, Expression right)
3202                         : this (oper, left, right, left.Location)
3203                 {
3204                 }
3205
3206                 public Binary (Operator oper, Expression left, Expression right, Location loc)
3207                 {
3208                         this.oper = oper;
3209                         this.left = left;
3210                         this.right = right;
3211                         this.loc = loc;
3212                 }
3213
3214                 #region Properties
3215
3216                 public bool IsCompound {
3217                         get {
3218                                 return (state & State.Compound) != 0;
3219                         }
3220                 }
3221
3222                 public Operator Oper {
3223                         get {
3224                                 return oper;
3225                         }
3226                 }
3227
3228                 public Expression Left {
3229                         get {
3230                                 return this.left;
3231                         }
3232                 }
3233
3234                 public Expression Right {
3235                         get {
3236                                 return this.right;
3237                         }
3238                 }
3239
3240                 public override Location StartLocation {
3241                         get {
3242                                 return left.StartLocation;
3243                         }
3244                 }
3245
3246                 #endregion
3247
3248                 /// <summary>
3249                 ///   Returns a stringified representation of the Operator
3250                 /// </summary>
3251                 string OperName (Operator oper)
3252                 {
3253                         string s;
3254                         switch (oper){
3255                         case Operator.Multiply:
3256                                 s = "*";
3257                                 break;
3258                         case Operator.Division:
3259                                 s = "/";
3260                                 break;
3261                         case Operator.Modulus:
3262                                 s = "%";
3263                                 break;
3264                         case Operator.Addition:
3265                                 s = "+";
3266                                 break;
3267                         case Operator.Subtraction:
3268                                 s = "-";
3269                                 break;
3270                         case Operator.LeftShift:
3271                                 s = "<<";
3272                                 break;
3273                         case Operator.RightShift:
3274                                 s = ">>";
3275                                 break;
3276                         case Operator.LessThan:
3277                                 s = "<";
3278                                 break;
3279                         case Operator.GreaterThan:
3280                                 s = ">";
3281                                 break;
3282                         case Operator.LessThanOrEqual:
3283                                 s = "<=";
3284                                 break;
3285                         case Operator.GreaterThanOrEqual:
3286                                 s = ">=";
3287                                 break;
3288                         case Operator.Equality:
3289                                 s = "==";
3290                                 break;
3291                         case Operator.Inequality:
3292                                 s = "!=";
3293                                 break;
3294                         case Operator.BitwiseAnd:
3295                                 s = "&";
3296                                 break;
3297                         case Operator.BitwiseOr:
3298                                 s = "|";
3299                                 break;
3300                         case Operator.ExclusiveOr:
3301                                 s = "^";
3302                                 break;
3303                         case Operator.LogicalOr:
3304                                 s = "||";
3305                                 break;
3306                         case Operator.LogicalAnd:
3307                                 s = "&&";
3308                                 break;
3309                         default:
3310                                 s = oper.ToString ();
3311                                 break;
3312                         }
3313
3314                         if (IsCompound)
3315                                 return s + "=";
3316
3317                         return s;
3318                 }
3319
3320                 public static void Error_OperatorCannotBeApplied (ResolveContext ec, Expression left, Expression right, Operator oper, Location loc)
3321                 {
3322                         new Binary (oper, left, right).Error_OperatorCannotBeApplied (ec, left, right);
3323                 }
3324
3325                 public static void Error_OperatorCannotBeApplied (ResolveContext ec, Expression left, Expression right, string oper, Location loc)
3326                 {
3327                         if (left.Type == InternalType.ErrorType || right.Type == InternalType.ErrorType)
3328                                 return;
3329
3330                         string l, r;
3331                         l = left.Type.GetSignatureForError ();
3332                         r = right.Type.GetSignatureForError ();
3333
3334                         ec.Report.Error (19, loc, "Operator `{0}' cannot be applied to operands of type `{1}' and `{2}'",
3335                                 oper, l, r);
3336                 }
3337                 
3338                 void Error_OperatorCannotBeApplied (ResolveContext ec, Expression left, Expression right)
3339                 {
3340                         Error_OperatorCannotBeApplied (ec, left, right, OperName (oper), loc);
3341                 }
3342
3343                 public override void FlowAnalysis (FlowAnalysisContext fc)
3344                 {
3345                         //
3346                         // Optimized version when on-true/on-false data are not needed
3347                         //
3348                         if ((oper & Operator.LogicalMask) == 0) {
3349                                 left.FlowAnalysis (fc);
3350                                 right.FlowAnalysis (fc);
3351                                 return;
3352                         }
3353
3354                         left.FlowAnalysisConditional (fc);
3355                         var left_fc_ontrue = fc.DefiniteAssignmentOnTrue;
3356                         var left_fc_onfalse = fc.DefiniteAssignmentOnFalse;
3357
3358                         fc.DefiniteAssignmentOnTrue = fc.DefiniteAssignmentOnFalse = fc.DefiniteAssignment = new DefiniteAssignmentBitSet (
3359                                 oper == Operator.LogicalOr ? left_fc_onfalse : left_fc_ontrue);
3360                         right.FlowAnalysisConditional (fc);
3361
3362                         if (oper == Operator.LogicalOr)
3363                                 fc.DefiniteAssignment = (left_fc_onfalse | (fc.DefiniteAssignmentOnFalse & fc.DefiniteAssignmentOnTrue)) & left_fc_ontrue;
3364                         else
3365                                 fc.DefiniteAssignment = (left_fc_ontrue | (fc.DefiniteAssignmentOnFalse & fc.DefiniteAssignmentOnTrue)) & left_fc_onfalse;
3366                 }
3367
3368                 public override void FlowAnalysisConditional (FlowAnalysisContext fc)
3369                 {
3370                         if ((oper & Operator.LogicalMask) == 0) {
3371                                 base.FlowAnalysisConditional (fc);
3372                                 return;
3373                         }
3374
3375                         left.FlowAnalysisConditional (fc);
3376                         var left_fc_ontrue = fc.DefiniteAssignmentOnTrue;
3377                         var left_fc_onfalse = fc.DefiniteAssignmentOnFalse;
3378
3379                         fc.DefiniteAssignmentOnTrue = fc.DefiniteAssignmentOnFalse = fc.DefiniteAssignment = new DefiniteAssignmentBitSet (
3380                                 oper == Operator.LogicalOr ? left_fc_onfalse : left_fc_ontrue);
3381                         right.FlowAnalysisConditional (fc);
3382
3383                         var lc = left as Constant;
3384                         if (oper == Operator.LogicalOr) {
3385                                 fc.DefiniteAssignmentOnFalse = left_fc_onfalse | fc.DefiniteAssignmentOnFalse;
3386                                 if (lc != null && lc.IsDefaultValue)
3387                                         fc.DefiniteAssignmentOnTrue = fc.DefiniteAssignmentOnFalse;
3388                                 else
3389                                         fc.DefiniteAssignmentOnTrue = new DefiniteAssignmentBitSet (left_fc_ontrue & (left_fc_onfalse | fc.DefiniteAssignmentOnTrue));
3390                         } else {
3391                                 fc.DefiniteAssignmentOnTrue = left_fc_ontrue | fc.DefiniteAssignmentOnTrue;
3392                                 if (lc != null && !lc.IsDefaultValue)
3393                                         fc.DefiniteAssignmentOnFalse = fc.DefiniteAssignmentOnTrue;
3394                                 else
3395                                         fc.DefiniteAssignmentOnFalse = new DefiniteAssignmentBitSet ((left_fc_ontrue | fc.DefiniteAssignmentOnFalse) & left_fc_onfalse);
3396                         }
3397                 }
3398
3399                 //
3400                 // Converts operator to System.Linq.Expressions.ExpressionType enum name
3401                 //
3402                 string GetOperatorExpressionTypeName ()
3403                 {
3404                         switch (oper) {
3405                         case Operator.Addition:
3406                                 return IsCompound ? "AddAssign" : "Add";
3407                         case Operator.BitwiseAnd:
3408                                 return IsCompound ? "AndAssign" : "And";
3409                         case Operator.BitwiseOr:
3410                                 return IsCompound ? "OrAssign" : "Or";
3411                         case Operator.Division:
3412                                 return IsCompound ? "DivideAssign" : "Divide";
3413                         case Operator.ExclusiveOr:
3414                                 return IsCompound ? "ExclusiveOrAssign" : "ExclusiveOr";
3415                         case Operator.Equality:
3416                                 return "Equal";
3417                         case Operator.GreaterThan:
3418                                 return "GreaterThan";
3419                         case Operator.GreaterThanOrEqual:
3420                                 return "GreaterThanOrEqual";
3421                         case Operator.Inequality:
3422                                 return "NotEqual";
3423                         case Operator.LeftShift:
3424                                 return IsCompound ? "LeftShiftAssign" : "LeftShift";
3425                         case Operator.LessThan:
3426                                 return "LessThan";
3427                         case Operator.LessThanOrEqual:
3428                                 return "LessThanOrEqual";
3429                         case Operator.LogicalAnd:
3430                                 return "And";
3431                         case Operator.LogicalOr:
3432                                 return "Or";
3433                         case Operator.Modulus:
3434                                 return IsCompound ? "ModuloAssign" : "Modulo";
3435                         case Operator.Multiply:
3436                                 return IsCompound ? "MultiplyAssign" : "Multiply";
3437                         case Operator.RightShift:
3438                                 return IsCompound ? "RightShiftAssign" : "RightShift";
3439                         case Operator.Subtraction:
3440                                 return IsCompound ? "SubtractAssign" : "Subtract";
3441                         default:
3442                                 throw new NotImplementedException ("Unknown expression type operator " + oper.ToString ());
3443                         }
3444                 }
3445
3446                 static CSharp.Operator.OpType ConvertBinaryToUserOperator (Operator op)
3447                 {
3448                         switch (op) {
3449                         case Operator.Addition:
3450                                 return CSharp.Operator.OpType.Addition;
3451                         case Operator.BitwiseAnd:
3452                         case Operator.LogicalAnd:
3453                                 return CSharp.Operator.OpType.BitwiseAnd;
3454                         case Operator.BitwiseOr:
3455                         case Operator.LogicalOr:
3456                                 return CSharp.Operator.OpType.BitwiseOr;
3457                         case Operator.Division:
3458                                 return CSharp.Operator.OpType.Division;
3459                         case Operator.Equality:
3460                                 return CSharp.Operator.OpType.Equality;
3461                         case Operator.ExclusiveOr:
3462                                 return CSharp.Operator.OpType.ExclusiveOr;
3463                         case Operator.GreaterThan:
3464                                 return CSharp.Operator.OpType.GreaterThan;
3465                         case Operator.GreaterThanOrEqual:
3466                                 return CSharp.Operator.OpType.GreaterThanOrEqual;
3467                         case Operator.Inequality:
3468                                 return CSharp.Operator.OpType.Inequality;
3469                         case Operator.LeftShift:
3470                                 return CSharp.Operator.OpType.LeftShift;
3471                         case Operator.LessThan:
3472                                 return CSharp.Operator.OpType.LessThan;
3473                         case Operator.LessThanOrEqual:
3474                                 return CSharp.Operator.OpType.LessThanOrEqual;
3475                         case Operator.Modulus:
3476                                 return CSharp.Operator.OpType.Modulus;
3477                         case Operator.Multiply:
3478                                 return CSharp.Operator.OpType.Multiply;
3479                         case Operator.RightShift:
3480                                 return CSharp.Operator.OpType.RightShift;
3481                         case Operator.Subtraction:
3482                                 return CSharp.Operator.OpType.Subtraction;
3483                         default:
3484                                 throw new InternalErrorException (op.ToString ());
3485                         }
3486                 }
3487
3488                 public override bool ContainsEmitWithAwait ()
3489                 {
3490                         return left.ContainsEmitWithAwait () || right.ContainsEmitWithAwait ();
3491                 }
3492
3493                 public static void EmitOperatorOpcode (EmitContext ec, Operator oper, TypeSpec l, Expression right)
3494                 {
3495                         OpCode opcode;
3496
3497                         switch (oper){
3498                         case Operator.Multiply:
3499                                 if (ec.HasSet (EmitContext.Options.CheckedScope)) {
3500                                         if (l.BuiltinType == BuiltinTypeSpec.Type.Int || l.BuiltinType == BuiltinTypeSpec.Type.Long)
3501                                                 opcode = OpCodes.Mul_Ovf;
3502                                         else if (!IsFloat (l))
3503                                                 opcode = OpCodes.Mul_Ovf_Un;
3504                                         else
3505                                                 opcode = OpCodes.Mul;
3506                                 } else
3507                                         opcode = OpCodes.Mul;
3508                                 
3509                                 break;
3510                                 
3511                         case Operator.Division:
3512                                 if (IsUnsigned (l))
3513                                         opcode = OpCodes.Div_Un;
3514                                 else
3515                                         opcode = OpCodes.Div;
3516                                 break;
3517                                 
3518                         case Operator.Modulus:
3519                                 if (IsUnsigned (l))
3520                                         opcode = OpCodes.Rem_Un;
3521                                 else
3522                                         opcode = OpCodes.Rem;
3523                                 break;
3524
3525                         case Operator.Addition:
3526                                 if (ec.HasSet (EmitContext.Options.CheckedScope)) {
3527                                         if (l.BuiltinType == BuiltinTypeSpec.Type.Int || l.BuiltinType == BuiltinTypeSpec.Type.Long)
3528                                                 opcode = OpCodes.Add_Ovf;
3529                                         else if (!IsFloat (l))
3530                                                 opcode = OpCodes.Add_Ovf_Un;
3531                                         else
3532                                                 opcode = OpCodes.Add;
3533                                 } else
3534                                         opcode = OpCodes.Add;
3535                                 break;
3536
3537                         case Operator.Subtraction:
3538                                 if (ec.HasSet (EmitContext.Options.CheckedScope)) {
3539                                         if (l.BuiltinType == BuiltinTypeSpec.Type.Int || l.BuiltinType == BuiltinTypeSpec.Type.Long)
3540                                                 opcode = OpCodes.Sub_Ovf;
3541                                         else if (!IsFloat (l))
3542                                                 opcode = OpCodes.Sub_Ovf_Un;
3543                                         else
3544                                                 opcode = OpCodes.Sub;
3545                                 } else
3546                                         opcode = OpCodes.Sub;
3547                                 break;
3548
3549                         case Operator.RightShift:
3550                                 if (!(right is IntConstant)) {
3551                                         ec.EmitInt (GetShiftMask (l));
3552                                         ec.Emit (OpCodes.And);
3553                                 }
3554
3555                                 if (IsUnsigned (l))
3556                                         opcode = OpCodes.Shr_Un;
3557                                 else
3558                                         opcode = OpCodes.Shr;
3559                                 break;
3560                                 
3561                         case Operator.LeftShift:
3562                                 if (!(right is IntConstant)) {
3563                                         ec.EmitInt (GetShiftMask (l));
3564                                         ec.Emit (OpCodes.And);
3565                                 }
3566
3567                                 opcode = OpCodes.Shl;
3568                                 break;
3569
3570                         case Operator.Equality:
3571                                 opcode = OpCodes.Ceq;
3572                                 break;
3573
3574                         case Operator.Inequality:
3575                                 ec.Emit (OpCodes.Ceq);
3576                                 ec.EmitInt (0);
3577                                 
3578                                 opcode = OpCodes.Ceq;
3579                                 break;
3580
3581                         case Operator.LessThan:
3582                                 if (IsUnsigned (l))
3583                                         opcode = OpCodes.Clt_Un;
3584                                 else
3585                                         opcode = OpCodes.Clt;
3586                                 break;
3587
3588                         case Operator.GreaterThan:
3589                                 if (IsUnsigned (l))
3590                                         opcode = OpCodes.Cgt_Un;
3591                                 else
3592                                         opcode = OpCodes.Cgt;
3593                                 break;
3594
3595                         case Operator.LessThanOrEqual:
3596                                 if (IsUnsigned (l) || IsFloat (l))
3597                                         ec.Emit (OpCodes.Cgt_Un);
3598                                 else
3599                                         ec.Emit (OpCodes.Cgt);
3600                                 ec.EmitInt (0);
3601                                 
3602                                 opcode = OpCodes.Ceq;
3603                                 break;
3604
3605                         case Operator.GreaterThanOrEqual:
3606                                 if (IsUnsigned (l) || IsFloat (l))
3607                                         ec.Emit (OpCodes.Clt_Un);
3608                                 else
3609                                         ec.Emit (OpCodes.Clt);
3610                                 
3611                                 ec.EmitInt (0);
3612                                 
3613                                 opcode = OpCodes.Ceq;
3614                                 break;
3615
3616                         case Operator.BitwiseOr:
3617                                 opcode = OpCodes.Or;
3618                                 break;
3619
3620                         case Operator.BitwiseAnd:
3621                                 opcode = OpCodes.And;
3622                                 break;
3623
3624                         case Operator.ExclusiveOr:
3625                                 opcode = OpCodes.Xor;
3626                                 break;
3627
3628                         default:
3629                                 throw new InternalErrorException (oper.ToString ());
3630                         }
3631
3632                         ec.Emit (opcode);
3633                 }
3634
3635                 static int GetShiftMask (TypeSpec type)
3636                 {
3637                         return type.BuiltinType == BuiltinTypeSpec.Type.Int || type.BuiltinType == BuiltinTypeSpec.Type.UInt ? 0x1f : 0x3f;
3638                 }
3639
3640                 static bool IsUnsigned (TypeSpec t)
3641                 {
3642                         switch (t.BuiltinType) {
3643                         case BuiltinTypeSpec.Type.Char:
3644                         case BuiltinTypeSpec.Type.UInt:
3645                         case BuiltinTypeSpec.Type.ULong:
3646                         case BuiltinTypeSpec.Type.UShort:
3647                         case BuiltinTypeSpec.Type.Byte:
3648                                 return true;
3649                         }
3650
3651                         return t.IsPointer;
3652                 }
3653
3654                 static bool IsFloat (TypeSpec t)
3655                 {
3656                         return t.BuiltinType == BuiltinTypeSpec.Type.Float || t.BuiltinType == BuiltinTypeSpec.Type.Double;
3657                 }
3658
3659                 public Expression ResolveOperator (ResolveContext rc)
3660                 {
3661                         eclass = ExprClass.Value;
3662
3663                         TypeSpec l = left.Type;
3664                         TypeSpec r = right.Type;
3665                         Expression expr;
3666                         bool primitives_only = false;
3667
3668                         //
3669                         // Handles predefined primitive types
3670                         //
3671                         if ((BuiltinTypeSpec.IsPrimitiveType (l) || (l.IsNullableType && BuiltinTypeSpec.IsPrimitiveType (Nullable.NullableInfo.GetUnderlyingType (l)))) &&
3672                                 (BuiltinTypeSpec.IsPrimitiveType (r) || (r.IsNullableType && BuiltinTypeSpec.IsPrimitiveType (Nullable.NullableInfo.GetUnderlyingType (r))))) {
3673                                 if ((oper & Operator.ShiftMask) == 0) {
3674                                         if (!DoBinaryOperatorPromotion (rc))
3675                                                 return null;
3676
3677                                         primitives_only = BuiltinTypeSpec.IsPrimitiveType (l) && BuiltinTypeSpec.IsPrimitiveType (r);
3678                                 }
3679                         } else {
3680                                 // Pointers
3681                                 if (l.IsPointer || r.IsPointer)
3682                                         return ResolveOperatorPointer (rc, l, r);
3683
3684                                 // User operators
3685                                 if ((state & State.UserOperatorsExcluded) == 0) {
3686                                         expr = ResolveUserOperator (rc, left, right);
3687                                         if (expr != null)
3688                                                 return expr;
3689                                 }
3690
3691                                 bool lenum = l.IsEnum;
3692                                 bool renum = r.IsEnum;
3693                                 if ((oper & (Operator.ComparisonMask | Operator.BitwiseMask)) != 0) {
3694                                         //
3695                                         // Enumerations
3696                                         //
3697                                         if (IsEnumOrNullableEnum (l) || IsEnumOrNullableEnum (r)) {
3698                                                 expr = ResolveSingleEnumOperators (rc, lenum, renum, l, r);
3699
3700                                                 if (expr == null)
3701                                                         return null;
3702
3703                                                 if ((oper & Operator.BitwiseMask) != 0) {
3704                                                         expr = EmptyCast.Create (expr, type);
3705                                                         enum_conversion = GetEnumResultCast (type);
3706
3707                                                         if (oper == Operator.BitwiseAnd && left.Type.IsEnum && right.Type.IsEnum) {
3708                                                                 expr = OptimizeAndOperation (expr);
3709                                                         }
3710                                                 }
3711
3712                                                 left = ConvertEnumOperandToUnderlyingType (rc, left, r.IsNullableType);
3713                                                 right = ConvertEnumOperandToUnderlyingType (rc, right, l.IsNullableType);
3714                                                 return expr;
3715                                         }
3716                                 } else if ((oper == Operator.Addition || oper == Operator.Subtraction)) {
3717                                         if (IsEnumOrNullableEnum (l) || IsEnumOrNullableEnum (r)) {
3718                                                 //
3719                                                 // Enumerations
3720                                                 //
3721                                                 expr = ResolveEnumOperators (rc, lenum, renum, l, r);
3722
3723                                                 //
3724                                                 // We cannot break here there is also Enum + String possible match
3725                                                 // which is not ambiguous with predefined enum operators
3726                                                 //
3727                                                 if (expr != null) {
3728                                                         left = ConvertEnumOperandToUnderlyingType (rc, left, false);
3729                                                         right = ConvertEnumOperandToUnderlyingType (rc, right, false);
3730
3731                                                         return expr;
3732                                                 }
3733                                         } else if (l.IsDelegate || r.IsDelegate) {
3734                                                 //
3735                                                 // Delegates
3736                                                 //
3737                                                 expr = ResolveOperatorDelegate (rc, l, r);
3738
3739                                                 // TODO: Can this be ambiguous
3740                                                 if (expr != null)
3741                                                         return expr;
3742                                         }
3743                                 }
3744                         }
3745                         
3746                         //
3747                         // Equality operators are more complicated
3748                         //
3749                         if ((oper & Operator.EqualityMask) != 0) {
3750                                 return ResolveEquality (rc, l, r, primitives_only);
3751                         }
3752
3753                         expr = ResolveOperatorPredefined (rc, rc.BuiltinTypes.OperatorsBinaryStandard, primitives_only);
3754                         if (expr != null)
3755                                 return expr;
3756
3757                         if (primitives_only)
3758                                 return null;
3759
3760                         //
3761                         // Lifted operators have lower priority
3762                         //
3763                         return ResolveOperatorPredefined (rc, rc.Module.OperatorsBinaryLifted, false);
3764                 }
3765
3766                 static bool IsEnumOrNullableEnum (TypeSpec type)
3767                 {
3768                         return type.IsEnum || (type.IsNullableType && Nullable.NullableInfo.GetUnderlyingType (type).IsEnum);
3769                 }
3770
3771
3772                 // at least one of 'left' or 'right' is an enumeration constant (EnumConstant or SideEffectConstant or ...)
3773                 // if 'left' is not an enumeration constant, create one from the type of 'right'
3774                 Constant EnumLiftUp (ResolveContext ec, Constant left, Constant right)
3775                 {
3776                         switch (oper) {
3777                         case Operator.BitwiseOr:
3778                         case Operator.BitwiseAnd:
3779                         case Operator.ExclusiveOr:
3780                         case Operator.Equality:
3781                         case Operator.Inequality:
3782                         case Operator.LessThan:
3783                         case Operator.LessThanOrEqual:
3784                         case Operator.GreaterThan:
3785                         case Operator.GreaterThanOrEqual:
3786                                 if (left.Type.IsEnum)
3787                                         return left;
3788                                 
3789                                 if (left.IsZeroInteger)
3790                                         return left.Reduce (ec, right.Type);
3791                                 
3792                                 break;
3793                                 
3794                         case Operator.Addition:
3795                         case Operator.Subtraction:
3796                                 return left;
3797                                 
3798                         case Operator.Multiply:
3799                         case Operator.Division:
3800                         case Operator.Modulus:
3801                         case Operator.LeftShift:
3802                         case Operator.RightShift:
3803                                 if (right.Type.IsEnum || left.Type.IsEnum)
3804                                         break;
3805                                 return left;
3806                         }
3807
3808                         return null;
3809                 }
3810
3811                 //
3812                 // The `|' operator used on types which were extended is dangerous
3813                 //
3814                 void CheckBitwiseOrOnSignExtended (ResolveContext ec)
3815                 {
3816                         OpcodeCast lcast = left as OpcodeCast;
3817                         if (lcast != null) {
3818                                 if (IsUnsigned (lcast.UnderlyingType))
3819                                         lcast = null;
3820                         }
3821
3822                         OpcodeCast rcast = right as OpcodeCast;
3823                         if (rcast != null) {
3824                                 if (IsUnsigned (rcast.UnderlyingType))
3825                                         rcast = null;
3826                         }
3827
3828                         if (lcast == null && rcast == null)
3829                                 return;
3830
3831                         // FIXME: consider constants
3832
3833                         var ltype = lcast != null ? lcast.UnderlyingType : rcast.UnderlyingType;
3834                         ec.Report.Warning (675, 3, loc,
3835                                 "The operator `|' used on the sign-extended type `{0}'. Consider casting to a smaller unsigned type first",
3836                                 ltype.GetSignatureForError ());
3837                 }
3838
3839                 public static PredefinedOperator[] CreatePointerOperatorsTable (BuiltinTypes types)
3840                 {
3841                         return new PredefinedOperator[] {
3842                                 //
3843                                 // Pointer arithmetic:
3844                                 //
3845                                 // T* operator + (T* x, int y);         T* operator - (T* x, int y);
3846                                 // T* operator + (T* x, uint y);        T* operator - (T* x, uint y);
3847                                 // T* operator + (T* x, long y);        T* operator - (T* x, long y);
3848                                 // T* operator + (T* x, ulong y);       T* operator - (T* x, ulong y);
3849                                 //
3850                                 new PredefinedPointerOperator (null, types.Int, Operator.AdditionMask | Operator.SubtractionMask),
3851                                 new PredefinedPointerOperator (null, types.UInt, Operator.AdditionMask | Operator.SubtractionMask),
3852                                 new PredefinedPointerOperator (null, types.Long, Operator.AdditionMask | Operator.SubtractionMask),
3853                                 new PredefinedPointerOperator (null, types.ULong, Operator.AdditionMask | Operator.SubtractionMask),
3854
3855                                 //
3856                                 // T* operator + (int y,   T* x);
3857                                 // T* operator + (uint y,  T *x);
3858                                 // T* operator + (long y,  T *x);
3859                                 // T* operator + (ulong y, T *x);
3860                                 //
3861                                 new PredefinedPointerOperator (types.Int, null, Operator.AdditionMask, null),
3862                                 new PredefinedPointerOperator (types.UInt, null, Operator.AdditionMask, null),
3863                                 new PredefinedPointerOperator (types.Long, null, Operator.AdditionMask, null),
3864                                 new PredefinedPointerOperator (types.ULong, null, Operator.AdditionMask, null),
3865
3866                                 //
3867                                 // long operator - (T* x, T *y)
3868                                 //
3869                                 new PredefinedPointerOperator (null, Operator.SubtractionMask, types.Long)
3870                         };
3871                 }
3872
3873                 public static PredefinedOperator[] CreateStandardOperatorsTable (BuiltinTypes types)
3874                 {
3875                         TypeSpec bool_type = types.Bool;
3876
3877                         return new [] {
3878                                 new PredefinedOperator (types.Int, Operator.ArithmeticMask | Operator.BitwiseMask | Operator.ShiftMask),
3879                                 new PredefinedOperator (types.UInt, Operator.ArithmeticMask | Operator.BitwiseMask),
3880                                 new PredefinedOperator (types.Long, Operator.ArithmeticMask | Operator.BitwiseMask),
3881                                 new PredefinedOperator (types.ULong, Operator.ArithmeticMask | Operator.BitwiseMask),
3882                                 new PredefinedOperator (types.Float, Operator.ArithmeticMask),
3883                                 new PredefinedOperator (types.Double, Operator.ArithmeticMask),
3884                                 new PredefinedOperator (types.Decimal, Operator.ArithmeticMask),
3885
3886                                 new PredefinedOperator (types.Int, Operator.ComparisonMask, bool_type),
3887                                 new PredefinedOperator (types.UInt, Operator.ComparisonMask, bool_type),
3888                                 new PredefinedOperator (types.Long, Operator.ComparisonMask, bool_type),
3889                                 new PredefinedOperator (types.ULong, Operator.ComparisonMask, bool_type),
3890                                 new PredefinedOperator (types.Float, Operator.ComparisonMask, bool_type),
3891                                 new PredefinedOperator (types.Double, Operator.ComparisonMask, bool_type),
3892                                 new PredefinedOperator (types.Decimal, Operator.ComparisonMask, bool_type),
3893
3894                                 new PredefinedStringOperator (types.String, Operator.AdditionMask, types.String),
3895                                 // Remaining string operators are in lifted tables
3896
3897                                 new PredefinedOperator (bool_type, Operator.BitwiseMask | Operator.LogicalMask | Operator.EqualityMask, bool_type),
3898
3899                                 new PredefinedOperator (types.UInt, types.Int, Operator.ShiftMask),
3900                                 new PredefinedOperator (types.Long, types.Int, Operator.ShiftMask),
3901                                 new PredefinedOperator (types.ULong, types.Int, Operator.ShiftMask)
3902                         };
3903
3904                 }
3905                 public static PredefinedOperator[] CreateStandardLiftedOperatorsTable (ModuleContainer module)
3906                 {
3907                         var types = module.Compiler.BuiltinTypes;
3908
3909                         //
3910                         // Not strictly lifted but need to be in second group otherwise expressions like
3911                         // int + null would resolve to +(object, string) instead of +(int?, int?)
3912                         //
3913                         var string_operators = new [] {
3914                                 new PredefinedStringOperator (types.String, types.Object, Operator.AdditionMask, types.String),
3915                                 new PredefinedStringOperator (types.Object, types.String, Operator.AdditionMask, types.String),
3916                         };
3917
3918                         var nullable = module.PredefinedTypes.Nullable.TypeSpec;
3919                         if (nullable == null)
3920                                 return string_operators;
3921
3922                         var bool_type = types.Bool;
3923
3924                         var nullable_bool = nullable.MakeGenericType (module, new[] { bool_type });
3925                         var nullable_int = nullable.MakeGenericType (module, new[] { types.Int });
3926                         var nullable_uint = nullable.MakeGenericType (module, new[] { types.UInt });
3927                         var nullable_long = nullable.MakeGenericType (module, new[] { types.Long });
3928                         var nullable_ulong = nullable.MakeGenericType (module, new[] { types.ULong });
3929                         var nullable_float = nullable.MakeGenericType (module, new[] { types.Float });
3930                         var nullable_double = nullable.MakeGenericType (module, new[] { types.Double });
3931                         var nullable_decimal = nullable.MakeGenericType (module, new[] { types.Decimal });
3932
3933                         return new[] {
3934                                 new PredefinedOperator (nullable_int, Operator.NullableMask | Operator.ArithmeticMask | Operator.BitwiseMask | Operator.ShiftMask),
3935                                 new PredefinedOperator (nullable_uint, Operator.NullableMask | Operator.ArithmeticMask | Operator.BitwiseMask),
3936                                 new PredefinedOperator (nullable_long, Operator.NullableMask | Operator.ArithmeticMask | Operator.BitwiseMask),
3937                                 new PredefinedOperator (nullable_ulong, Operator.NullableMask | Operator.ArithmeticMask | Operator.BitwiseMask),
3938                                 new PredefinedOperator (nullable_float, Operator.NullableMask | Operator.ArithmeticMask),
3939                                 new PredefinedOperator (nullable_double, Operator.NullableMask | Operator.ArithmeticMask),
3940                                 new PredefinedOperator (nullable_decimal, Operator.NullableMask | Operator.ArithmeticMask),
3941
3942                                 new PredefinedOperator (nullable_int, Operator.NullableMask | Operator.ComparisonMask, bool_type),
3943                                 new PredefinedOperator (nullable_uint, Operator.NullableMask | Operator.ComparisonMask, bool_type),
3944                                 new PredefinedOperator (nullable_long, Operator.NullableMask | Operator.ComparisonMask, bool_type),
3945                                 new PredefinedOperator (nullable_ulong, Operator.NullableMask | Operator.ComparisonMask, bool_type),
3946                                 new PredefinedOperator (nullable_float, Operator.NullableMask | Operator.ComparisonMask, bool_type),
3947                                 new PredefinedOperator (nullable_double, Operator.NullableMask | Operator.ComparisonMask, bool_type),
3948                                 new PredefinedOperator (nullable_decimal, Operator.NullableMask | Operator.ComparisonMask, bool_type),
3949
3950                                 new PredefinedOperator (nullable_bool, Operator.NullableMask | Operator.BitwiseMask, nullable_bool),
3951
3952                                 new PredefinedOperator (nullable_uint, nullable_int, Operator.NullableMask | Operator.ShiftMask),
3953                                 new PredefinedOperator (nullable_long, nullable_int, Operator.NullableMask | Operator.ShiftMask),
3954                                 new PredefinedOperator (nullable_ulong, nullable_int, Operator.NullableMask | Operator.ShiftMask),
3955
3956                                 string_operators [0],
3957                                 string_operators [1]
3958                         };
3959                 }
3960
3961                 public static PredefinedOperator[] CreateEqualityOperatorsTable (BuiltinTypes types)
3962                 {
3963                         TypeSpec bool_type = types.Bool;
3964
3965                         return new[] {
3966                                 new PredefinedEqualityOperator (types.String, bool_type),
3967                                 new PredefinedEqualityOperator (types.Delegate, bool_type),
3968                                 new PredefinedOperator (bool_type, Operator.EqualityMask, bool_type),
3969                                 new PredefinedOperator (types.Int, Operator.EqualityMask, bool_type),
3970                                 new PredefinedOperator (types.UInt, Operator.EqualityMask, bool_type),
3971                                 new PredefinedOperator (types.Long, Operator.EqualityMask, bool_type),
3972                                 new PredefinedOperator (types.ULong, Operator.EqualityMask, bool_type),
3973                                 new PredefinedOperator (types.Float, Operator.EqualityMask, bool_type),
3974                                 new PredefinedOperator (types.Double, Operator.EqualityMask, bool_type),
3975                                 new PredefinedOperator (types.Decimal, Operator.EqualityMask, bool_type),
3976                         };
3977                 }
3978
3979                 public static PredefinedOperator[] CreateEqualityLiftedOperatorsTable (ModuleContainer module)
3980                 {
3981                         var nullable = module.PredefinedTypes.Nullable.TypeSpec;
3982
3983                         if (nullable == null)
3984                                 return new PredefinedOperator [0];
3985
3986                         var types = module.Compiler.BuiltinTypes;
3987                         var bool_type = types.Bool;
3988                         var nullable_bool = nullable.MakeGenericType (module, new [] { bool_type });
3989                         var nullable_int = nullable.MakeGenericType (module, new[] { types.Int });
3990                         var nullable_uint = nullable.MakeGenericType (module, new[] { types.UInt });
3991                         var nullable_long = nullable.MakeGenericType (module, new[] { types.Long });
3992                         var nullable_ulong = nullable.MakeGenericType (module, new[] { types.ULong });
3993                         var nullable_float = nullable.MakeGenericType (module, new[] { types.Float });
3994                         var nullable_double = nullable.MakeGenericType (module, new[] { types.Double });
3995                         var nullable_decimal = nullable.MakeGenericType (module, new[] { types.Decimal });
3996
3997                         return new [] {
3998                                 new PredefinedOperator (nullable_bool, Operator.NullableMask | Operator.EqualityMask, bool_type),
3999                                 new PredefinedOperator (nullable_int, Operator.NullableMask | Operator.EqualityMask, bool_type),
4000                                 new PredefinedOperator (nullable_uint, Operator.NullableMask | Operator.EqualityMask, bool_type),
4001                                 new PredefinedOperator (nullable_long, Operator.NullableMask | Operator.EqualityMask, bool_type),
4002                                 new PredefinedOperator (nullable_ulong, Operator.NullableMask | Operator.EqualityMask, bool_type),
4003                                 new PredefinedOperator (nullable_float, Operator.NullableMask | Operator.EqualityMask, bool_type),
4004                                 new PredefinedOperator (nullable_double, Operator.NullableMask | Operator.EqualityMask, bool_type),
4005                                 new PredefinedOperator (nullable_decimal, Operator.NullableMask | Operator.EqualityMask, bool_type)
4006                         };
4007                 }
4008
4009                 //
4010                 // 7.2.6.2 Binary numeric promotions
4011                 //
4012                 bool DoBinaryOperatorPromotion (ResolveContext rc)
4013                 {
4014                         TypeSpec ltype = left.Type;
4015                         if (ltype.IsNullableType) {
4016                                 ltype = Nullable.NullableInfo.GetUnderlyingType (ltype);
4017                         }
4018
4019                         //
4020                         // This is numeric promotion code only
4021                         //
4022                         if (ltype.BuiltinType == BuiltinTypeSpec.Type.Bool)
4023                                 return true;
4024
4025                         TypeSpec rtype = right.Type;
4026                         if (rtype.IsNullableType) {
4027                                 rtype = Nullable.NullableInfo.GetUnderlyingType (rtype);
4028                         }
4029
4030                         var lb = ltype.BuiltinType;
4031                         var rb = rtype.BuiltinType;
4032                         TypeSpec type;
4033                         Expression expr;
4034
4035                         if (lb == BuiltinTypeSpec.Type.Decimal || rb == BuiltinTypeSpec.Type.Decimal) {
4036                                 type = rc.BuiltinTypes.Decimal;
4037                         } else if (lb == BuiltinTypeSpec.Type.Double || rb == BuiltinTypeSpec.Type.Double) {
4038                                 type = rc.BuiltinTypes.Double;
4039                         } else if (lb == BuiltinTypeSpec.Type.Float || rb == BuiltinTypeSpec.Type.Float) {
4040                                 type = rc.BuiltinTypes.Float;
4041                         } else if (lb == BuiltinTypeSpec.Type.ULong || rb == BuiltinTypeSpec.Type.ULong) {
4042                                 type = rc.BuiltinTypes.ULong;
4043
4044                                 if (IsSignedType (lb)) {
4045                                         expr = ConvertSignedConstant (left, type);
4046                                         if (expr == null)
4047                                                 return false;
4048                                         left = expr;
4049                                 } else if (IsSignedType (rb)) {
4050                                         expr = ConvertSignedConstant (right, type);
4051                                         if (expr == null)
4052                                                 return false;
4053                                         right = expr;
4054                                 }
4055
4056                         } else if (lb == BuiltinTypeSpec.Type.Long || rb == BuiltinTypeSpec.Type.Long) {
4057                                 type = rc.BuiltinTypes.Long;
4058                         } else if (lb == BuiltinTypeSpec.Type.UInt || rb == BuiltinTypeSpec.Type.UInt) {
4059                                 type = rc.BuiltinTypes.UInt;
4060
4061                                 if (IsSignedType (lb)) {
4062                                         expr = ConvertSignedConstant (left, type);
4063                                         if (expr == null)
4064                                                 type = rc.BuiltinTypes.Long;
4065                                 } else if (IsSignedType (rb)) {
4066                                         expr = ConvertSignedConstant (right, type);
4067                                         if (expr == null)
4068                                                 type = rc.BuiltinTypes.Long;
4069                                 }
4070                         } else {
4071                                 type = rc.BuiltinTypes.Int;
4072                         }
4073
4074                         if (ltype != type) {
4075                                 expr = PromoteExpression (rc, left, type);
4076                                 if (expr == null)
4077                                         return false;
4078
4079                                 left = expr;
4080                         }
4081
4082                         if (rtype != type) {
4083                                 expr = PromoteExpression (rc, right, type);
4084                                 if (expr == null)
4085                                         return false;
4086
4087                                 right = expr;
4088                         }
4089
4090                         return true;
4091                 }
4092
4093                 static bool IsSignedType (BuiltinTypeSpec.Type type)
4094                 {
4095                         switch (type) {
4096                         case BuiltinTypeSpec.Type.Int:
4097                         case BuiltinTypeSpec.Type.Short:
4098                         case BuiltinTypeSpec.Type.SByte:
4099                         case BuiltinTypeSpec.Type.Long:
4100                                 return true;
4101                         default:
4102                                 return false;
4103                         }
4104                 }
4105
4106                 static Expression ConvertSignedConstant (Expression expr, TypeSpec type)
4107                 {
4108                         var c = expr as Constant;
4109                         if (c == null)
4110                                 return null;
4111
4112                         return c.ConvertImplicitly (type);
4113                 }
4114
4115                 static Expression PromoteExpression (ResolveContext rc, Expression expr, TypeSpec type)
4116                 {
4117                         if (expr.Type.IsNullableType) {
4118                                 return Convert.ImplicitConversionStandard (rc, expr,
4119                                         rc.Module.PredefinedTypes.Nullable.TypeSpec.MakeGenericType (rc, new[] { type }), expr.Location);
4120                         }
4121
4122                         var c = expr as Constant;
4123                         if (c != null)
4124                                 return c.ConvertImplicitly (type);
4125
4126                         return Convert.ImplicitNumericConversion (expr, type);
4127                 }
4128
4129                 protected override Expression DoResolve (ResolveContext ec)
4130                 {
4131                         if (left == null)
4132                                 return null;
4133
4134                         if ((oper == Operator.Subtraction) && (left is ParenthesizedExpression)) {
4135                                 left = ((ParenthesizedExpression) left).Expr;
4136                                 left = left.Resolve (ec, ResolveFlags.VariableOrValue | ResolveFlags.Type);
4137                                 if (left == null)
4138                                         return null;
4139
4140                                 if (left.eclass == ExprClass.Type) {
4141                                         ec.Report.Error (75, loc, "To cast a negative value, you must enclose the value in parentheses");
4142                                         return null;
4143                                 }
4144                         } else
4145                                 left = left.Resolve (ec);
4146
4147                         if (left == null)
4148                                 return null;
4149
4150                         right = right.Resolve (ec);
4151                         if (right == null)
4152                                 return null;
4153
4154                         Constant lc = left as Constant;
4155                         Constant rc = right as Constant;
4156
4157                         // The conversion rules are ignored in enum context but why
4158                         if (!ec.HasSet (ResolveContext.Options.EnumScope) && lc != null && rc != null && (left.Type.IsEnum || right.Type.IsEnum)) {
4159                                 lc = EnumLiftUp (ec, lc, rc);
4160                                 if (lc != null)
4161                                         rc = EnumLiftUp (ec, rc, lc);
4162                         }
4163
4164                         if (rc != null && lc != null) {
4165                                 int prev_e = ec.Report.Errors;
4166                                 Expression e = ConstantFold.BinaryFold (ec, oper, lc, rc, loc);
4167                                 if (e != null || ec.Report.Errors != prev_e)
4168                                         return e;
4169                         }
4170
4171                         // Comparison warnings
4172                         if ((oper & Operator.ComparisonMask) != 0) {
4173                                 if (left.Equals (right)) {
4174                                         ec.Report.Warning (1718, 3, loc, "A comparison made to same variable. Did you mean to compare something else?");
4175                                 }
4176                                 CheckOutOfRangeComparison (ec, lc, right.Type);
4177                                 CheckOutOfRangeComparison (ec, rc, left.Type);
4178                         }
4179
4180                         if (left.Type.BuiltinType == BuiltinTypeSpec.Type.Dynamic || right.Type.BuiltinType == BuiltinTypeSpec.Type.Dynamic)
4181                                 return DoResolveDynamic (ec);
4182
4183                         return DoResolveCore (ec, left, right);
4184                 }
4185
4186                 Expression DoResolveDynamic (ResolveContext rc)
4187                 {
4188                         var lt = left.Type;
4189                         var rt = right.Type;
4190                         if (lt.Kind == MemberKind.Void || lt == InternalType.MethodGroup || lt == InternalType.AnonymousMethod ||
4191                                 rt.Kind == MemberKind.Void || rt == InternalType.MethodGroup || rt == InternalType.AnonymousMethod) {
4192                                 Error_OperatorCannotBeApplied (rc, left, right);
4193                                 return null;
4194                         }
4195
4196                         Arguments args;
4197
4198                         //
4199                         // Special handling for logical boolean operators which require rhs not to be
4200                         // evaluated based on lhs value
4201                         //
4202                         if ((oper & Operator.LogicalMask) != 0) {
4203                                 Expression cond_left, cond_right, expr;
4204
4205                                 args = new Arguments (2);
4206
4207                                 if (lt.BuiltinType == BuiltinTypeSpec.Type.Dynamic) {
4208                                         LocalVariable temp = LocalVariable.CreateCompilerGenerated (lt, rc.CurrentBlock, loc);
4209
4210                                         var cond_args = new Arguments (1);
4211                                         cond_args.Add (new Argument (new SimpleAssign (temp.CreateReferenceExpression (rc, loc), left).Resolve (rc)));
4212
4213                                         //
4214                                         // dynamic && bool => IsFalse (temp = left) ? temp : temp && right;
4215                                         // dynamic || bool => IsTrue (temp = left) ? temp : temp || right;
4216                                         //
4217                                         left = temp.CreateReferenceExpression (rc, loc);
4218                                         if (oper == Operator.LogicalAnd) {
4219                                                 expr = DynamicUnaryConversion.CreateIsFalse (rc, cond_args, loc);
4220                                                 cond_left = left;
4221                                         } else {
4222                                                 expr = DynamicUnaryConversion.CreateIsTrue (rc, cond_args, loc);
4223                                                 cond_left = left;
4224                                         }
4225
4226                                         args.Add (new Argument (left));
4227                                         args.Add (new Argument (right));
4228                                         cond_right = new DynamicExpressionStatement (this, args, loc);
4229                                 } else {
4230                                         LocalVariable temp = LocalVariable.CreateCompilerGenerated (rc.BuiltinTypes.Bool, rc.CurrentBlock, loc);
4231
4232                                         if (!Convert.ImplicitConversionExists (rc, left, temp.Type) && (oper == Operator.LogicalAnd ? GetOperatorFalse (rc, left, loc) : GetOperatorTrue (rc, left, loc)) == null) {
4233                                                 rc.Report.Error (7083, left.Location,
4234                                                         "Expression must be implicitly convertible to Boolean or its type `{0}' must define operator `{1}'",
4235                                                         lt.GetSignatureForError (), oper == Operator.LogicalAnd ? "false" : "true");
4236                                                 return null;
4237                                         }
4238
4239                                         args.Add (new Argument (temp.CreateReferenceExpression (rc, loc).Resolve (rc)));
4240                                         args.Add (new Argument (right));
4241                                         right = new DynamicExpressionStatement (this, args, loc);
4242
4243                                         //
4244                                         // bool && dynamic => (temp = left) ? temp && right : temp;
4245                                         // bool || dynamic => (temp = left) ? temp : temp || right;
4246                                         //
4247                                         if (oper == Operator.LogicalAnd) {
4248                                                 cond_left = right;
4249                                                 cond_right = temp.CreateReferenceExpression (rc, loc);
4250                                         } else {
4251                                                 cond_left = temp.CreateReferenceExpression (rc, loc);
4252                                                 cond_right = right;
4253                                         }
4254
4255                                         expr = new BooleanExpression (new SimpleAssign (temp.CreateReferenceExpression (rc, loc), left));
4256                                 }
4257
4258                                 return new Conditional (expr, cond_left, cond_right, loc).Resolve (rc);
4259                         }
4260
4261                         args = new Arguments (2);
4262                         args.Add (new Argument (left));
4263                         args.Add (new Argument (right));
4264                         return new DynamicExpressionStatement (this, args, loc).Resolve (rc);
4265                 }
4266
4267                 Expression DoResolveCore (ResolveContext ec, Expression left_orig, Expression right_orig)
4268                 {
4269                         Expression expr = ResolveOperator (ec);
4270                         if (expr == null)
4271                                 Error_OperatorCannotBeApplied (ec, left_orig, right_orig);
4272
4273                         if (left == null || right == null)
4274                                 throw new InternalErrorException ("Invalid conversion");
4275
4276                         if (oper == Operator.BitwiseOr)
4277                                 CheckBitwiseOrOnSignExtended (ec);
4278
4279                         return expr;
4280                 }
4281
4282                 public override SLE.Expression MakeExpression (BuilderContext ctx)
4283                 {
4284                         return MakeExpression (ctx, left, right);
4285                 }
4286
4287                 public SLE.Expression MakeExpression (BuilderContext ctx, Expression left, Expression right)
4288                 {
4289                         var le = left.MakeExpression (ctx);
4290                         var re = right.MakeExpression (ctx);
4291                         bool is_checked = ctx.HasSet (BuilderContext.Options.CheckedScope);
4292
4293                         switch (oper) {
4294                         case Operator.Addition:
4295                                 return is_checked ? SLE.Expression.AddChecked (le, re) : SLE.Expression.Add (le, re);
4296                         case Operator.BitwiseAnd:
4297                                 return SLE.Expression.And (le, re);
4298                         case Operator.BitwiseOr:
4299                                 return SLE.Expression.Or (le, re);
4300                         case Operator.Division:
4301                                 return SLE.Expression.Divide (le, re);
4302                         case Operator.Equality:
4303                                 return SLE.Expression.Equal (le, re);
4304                         case Operator.ExclusiveOr:
4305                                 return SLE.Expression.ExclusiveOr (le, re);
4306                         case Operator.GreaterThan:
4307                                 return SLE.Expression.GreaterThan (le, re);
4308                         case Operator.GreaterThanOrEqual:
4309                                 return SLE.Expression.GreaterThanOrEqual (le, re);
4310                         case Operator.Inequality:
4311                                 return SLE.Expression.NotEqual (le, re);
4312                         case Operator.LeftShift:
4313                                 return SLE.Expression.LeftShift (le, re);
4314                         case Operator.LessThan:
4315                                 return SLE.Expression.LessThan (le, re);
4316                         case Operator.LessThanOrEqual:
4317                                 return SLE.Expression.LessThanOrEqual (le, re);
4318                         case Operator.LogicalAnd:
4319                                 return SLE.Expression.AndAlso (le, re);
4320                         case Operator.LogicalOr:
4321                                 return SLE.Expression.OrElse (le, re);
4322                         case Operator.Modulus:
4323                                 return SLE.Expression.Modulo (le, re);
4324                         case Operator.Multiply:
4325                                 return is_checked ? SLE.Expression.MultiplyChecked (le, re) : SLE.Expression.Multiply (le, re);
4326                         case Operator.RightShift:
4327                                 return SLE.Expression.RightShift (le, re);
4328                         case Operator.Subtraction:
4329                                 return is_checked ? SLE.Expression.SubtractChecked (le, re) : SLE.Expression.Subtract (le, re);
4330                         default:
4331                                 throw new NotImplementedException (oper.ToString ());
4332                         }
4333                 }
4334
4335                 //
4336                 // D operator + (D x, D y)
4337                 // D operator - (D x, D y)
4338                 //
4339                 Expression ResolveOperatorDelegate (ResolveContext ec, TypeSpec l, TypeSpec r)
4340                 {
4341                         if (l != r && !TypeSpecComparer.Variant.IsEqual (r, l)) {
4342                                 Expression tmp;
4343                                 if (right.eclass == ExprClass.MethodGroup || r == InternalType.AnonymousMethod || r == InternalType.NullLiteral) {
4344                                         tmp = Convert.ImplicitConversionRequired (ec, right, l, loc);
4345                                         if (tmp == null)
4346                                                 return null;
4347                                         right = tmp;
4348                                         r = right.Type;
4349                                 } else if (left.eclass == ExprClass.MethodGroup || (l == InternalType.AnonymousMethod || l == InternalType.NullLiteral)) {
4350                                         tmp = Convert.ImplicitConversionRequired (ec, left, r, loc);
4351                                         if (tmp == null)
4352                                                 return null;
4353                                         left = tmp;
4354                                         l = left.Type;
4355                                 } else {
4356                                         return null;
4357                                 }
4358                         }
4359
4360                         MethodSpec method = null;
4361                         Arguments args = new Arguments (2);
4362                         args.Add (new Argument (left));
4363                         args.Add (new Argument (right));
4364
4365                         if (oper == Operator.Addition) {
4366                                 method = ec.Module.PredefinedMembers.DelegateCombine.Resolve (loc);
4367                         } else if (oper == Operator.Subtraction) {
4368                                 method = ec.Module.PredefinedMembers.DelegateRemove.Resolve (loc);
4369                         }
4370
4371                         if (method == null)
4372                                 return new EmptyExpression (ec.BuiltinTypes.Decimal);
4373
4374                         Expression expr = new UserOperatorCall (method, args, CreateExpressionTree, loc);
4375                         return new ClassCast (expr, l);
4376                 }
4377
4378                 //
4379                 // Resolves enumeration operators where only single predefined overload exists, handles lifted versions too
4380                 //
4381                 Expression ResolveSingleEnumOperators (ResolveContext rc, bool lenum, bool renum, TypeSpec ltype, TypeSpec rtype)
4382                 {
4383                         //
4384                         // bool operator == (E x, E y);
4385                         // bool operator != (E x, E y);
4386                         // bool operator < (E x, E y);
4387                         // bool operator > (E x, E y);
4388                         // bool operator <= (E x, E y);
4389                         // bool operator >= (E x, E y);
4390                         //
4391                         // E operator & (E x, E y);
4392                         // E operator | (E x, E y);
4393                         // E operator ^ (E x, E y);
4394                         //
4395                         Expression expr;
4396                         if ((oper & Operator.ComparisonMask) != 0) {
4397                                 type = rc.BuiltinTypes.Bool;
4398                         } else {
4399                                 if (lenum)
4400                                         type = ltype;
4401                                 else if (renum)
4402                                         type = rtype;
4403                                 else if (ltype.IsNullableType && Nullable.NullableInfo.GetUnderlyingType (ltype).IsEnum)
4404                                         type = ltype;
4405                                 else
4406                                         type = rtype;
4407                         }
4408
4409                         if (ltype == rtype) {
4410                                 if (lenum || renum)
4411                                         return this;
4412
4413                                 var lifted = new Nullable.LiftedBinaryOperator (this);
4414                                 lifted.Left = left;
4415                                 lifted.Right = right;
4416                                 return lifted.Resolve (rc);
4417                         }
4418
4419                         if (renum && !ltype.IsNullableType) {
4420                                 expr = Convert.ImplicitConversion (rc, left, rtype, loc);
4421                                 if (expr != null) {
4422                                         left = expr;
4423                                         return this;
4424                                 }
4425                         } else if (lenum && !rtype.IsNullableType) {
4426                                 expr = Convert.ImplicitConversion (rc, right, ltype, loc);
4427                                 if (expr != null) {
4428                                         right = expr;
4429                                         return this;
4430                                 }
4431                         }
4432
4433                         //
4434                         // Now try lifted version of predefined operator
4435                         //
4436                         var nullable_type = rc.Module.PredefinedTypes.Nullable.TypeSpec;
4437                         if (nullable_type != null) {
4438                                 if (renum && !ltype.IsNullableType) {
4439                                         var lifted_type = nullable_type.MakeGenericType (rc.Module, new[] { rtype });
4440
4441                                         expr = Convert.ImplicitConversion (rc, left, lifted_type, loc);
4442                                         if (expr != null) {
4443                                                 left = expr;
4444                                                 right = Convert.ImplicitConversion (rc, right, lifted_type, loc);
4445                                         }
4446
4447                                         if ((oper & Operator.BitwiseMask) != 0)
4448                                                 type = lifted_type;
4449
4450                                         if (left.IsNull) {
4451                                                 if ((oper & Operator.BitwiseMask) != 0)
4452                                                         return Nullable.LiftedNull.CreateFromExpression (rc, this);
4453
4454                                                 return CreateLiftedValueTypeResult (rc, rtype);
4455                                         }
4456
4457                                         if (expr != null) {
4458                                                 var lifted = new Nullable.LiftedBinaryOperator (this);
4459                                                 lifted.Left = expr;
4460                                                 lifted.Right = right;
4461                                                 return lifted.Resolve (rc);
4462                                         }
4463                                 } else if (lenum && !rtype.IsNullableType) {
4464                                         var lifted_type = nullable_type.MakeGenericType (rc.Module, new[] { ltype });
4465
4466                                         expr = Convert.ImplicitConversion (rc, right, lifted_type, loc);
4467                                         if (expr != null) {
4468                                                 right = expr;
4469                                                 left = Convert.ImplicitConversion (rc, left, lifted_type, loc);
4470                                         }
4471
4472                                         if ((oper & Operator.BitwiseMask) != 0)
4473                                                 type = lifted_type;
4474
4475                                         if (right.IsNull) {
4476                                                 if ((oper & Operator.BitwiseMask) != 0)
4477                                                         return Nullable.LiftedNull.CreateFromExpression (rc, this);
4478
4479                                                 return CreateLiftedValueTypeResult (rc, ltype);
4480                                         }
4481
4482                                         if (expr != null) {
4483                                                 var lifted = new Nullable.LiftedBinaryOperator (this);
4484                                                 lifted.Left = left;
4485                                                 lifted.Right = expr;
4486                                                 return lifted.Resolve (rc);
4487                                         }
4488                                 } else if (rtype.IsNullableType && Nullable.NullableInfo.GetUnderlyingType (rtype).IsEnum) {
4489                                         Nullable.Unwrap unwrap = null;
4490                                         if (left.IsNull || right.IsNull) {
4491                                                 if (rc.HasSet (ResolveContext.Options.ExpressionTreeConversion))
4492                                                         left = Convert.ImplicitConversion (rc, left, rtype, left.Location);
4493
4494                                                 if ((oper & Operator.RelationalMask) != 0)
4495                                                         return CreateLiftedValueTypeResult (rc, rtype);
4496
4497                                                 if ((oper & Operator.BitwiseMask) != 0)
4498                                                         return Nullable.LiftedNull.CreateFromExpression (rc, this);
4499
4500                                                 if (right.IsNull)
4501                                                         return CreateLiftedValueTypeResult (rc, left.Type);
4502
4503                                                 // Equality operators are valid between E? and null
4504                                                 expr = left;
4505                                                 unwrap = new Nullable.Unwrap (right);
4506                                         } else {
4507                                                 expr = Convert.ImplicitConversion (rc, left, Nullable.NullableInfo.GetUnderlyingType (rtype), loc);
4508                                                 if (expr == null)
4509                                                         return null;
4510
4511                                                 if ((oper & Operator.BitwiseMask) != 0)
4512                                                         type = rtype;
4513                                         }
4514
4515                                         if (expr != null) {
4516                                                 var lifted = new Nullable.LiftedBinaryOperator (this);
4517                                                 lifted.Left = expr;
4518                                                 lifted.Right = right;
4519                                                 lifted.UnwrapRight = unwrap;
4520                                                 return lifted.Resolve (rc);
4521                                         }
4522                                 } else if (ltype.IsNullableType && Nullable.NullableInfo.GetUnderlyingType (ltype).IsEnum) {
4523                                         Nullable.Unwrap unwrap = null;
4524                                         if (right.IsNull || left.IsNull) {
4525                                                 if (rc.HasSet (ResolveContext.Options.ExpressionTreeConversion))
4526                                                         right = Convert.ImplicitConversion (rc, right, ltype, right.Location);
4527
4528                                                 if ((oper & Operator.RelationalMask) != 0)
4529                                                         return CreateLiftedValueTypeResult (rc, ltype);
4530
4531                                                 if ((oper & Operator.BitwiseMask) != 0)
4532                                                         return Nullable.LiftedNull.CreateFromExpression (rc, this);
4533
4534                                                 if (left.IsNull)
4535                                                         return CreateLiftedValueTypeResult (rc, right.Type);
4536
4537                                                 // Equality operators are valid between E? and null
4538                                                 expr = right;
4539                                                 unwrap = new Nullable.Unwrap (left);
4540                                         } else {
4541                                                 expr = Convert.ImplicitConversion (rc, right, Nullable.NullableInfo.GetUnderlyingType (ltype), loc);
4542                                                 if (expr == null)
4543                                                         return null;
4544
4545                                                 if ((oper & Operator.BitwiseMask) != 0)
4546                                                         type = ltype;
4547                                         }
4548
4549                                         if (expr != null) {
4550                                                 var lifted = new Nullable.LiftedBinaryOperator (this);
4551                                                 lifted.Left = left;
4552                                                 lifted.UnwrapLeft = unwrap;
4553                                                 lifted.Right = expr;
4554                                                 return lifted.Resolve (rc);
4555                                         }
4556                                 }
4557                         }
4558
4559                         return null;
4560                 }
4561
4562                 static Expression ConvertEnumOperandToUnderlyingType (ResolveContext rc, Expression expr, bool liftType)
4563                 {
4564                         TypeSpec underlying_type;
4565                         if (expr.Type.IsNullableType) {
4566                                 var nt = Nullable.NullableInfo.GetUnderlyingType (expr.Type);
4567                                 if (nt.IsEnum)
4568                                         underlying_type = EnumSpec.GetUnderlyingType (nt);
4569                                 else
4570                                         underlying_type = nt;
4571                         } else if (expr.Type.IsEnum) {
4572                                 underlying_type = EnumSpec.GetUnderlyingType (expr.Type);
4573                         } else {
4574                                 underlying_type = expr.Type;
4575                         }
4576
4577                         switch (underlying_type.BuiltinType) {
4578                         case BuiltinTypeSpec.Type.SByte:
4579                         case BuiltinTypeSpec.Type.Byte:
4580                         case BuiltinTypeSpec.Type.Short:
4581                         case BuiltinTypeSpec.Type.UShort:
4582                                 underlying_type = rc.BuiltinTypes.Int;
4583                                 break;
4584                         }
4585
4586                         if (expr.Type.IsNullableType || liftType)
4587                                 underlying_type = rc.Module.PredefinedTypes.Nullable.TypeSpec.MakeGenericType (rc.Module, new[] { underlying_type });
4588
4589                         if (expr.Type == underlying_type)
4590                                 return expr;
4591
4592                         return EmptyCast.Create (expr, underlying_type);
4593                 }
4594
4595                 Expression ResolveEnumOperators (ResolveContext rc, bool lenum, bool renum, TypeSpec ltype, TypeSpec rtype)
4596                 {
4597                         //
4598                         // U operator - (E e, E f)
4599                         // E operator - (E e, U x)  // Internal decomposition operator
4600                         // E operator - (U x, E e)      // Internal decomposition operator
4601                         //
4602                         // E operator + (E e, U x)
4603                         // E operator + (U x, E e)
4604                         //
4605
4606                         TypeSpec enum_type;
4607
4608                         if (lenum)
4609                                 enum_type = ltype;
4610                         else if (renum)
4611                                 enum_type = rtype;
4612                         else if (ltype.IsNullableType && Nullable.NullableInfo.GetUnderlyingType (ltype).IsEnum)
4613                                 enum_type = ltype;
4614                         else
4615                                 enum_type = rtype;
4616
4617                         Expression expr;
4618                         if (!enum_type.IsNullableType) {
4619                                 expr = ResolveOperatorPredefined (rc, rc.Module.GetPredefinedEnumAritmeticOperators (enum_type, false), false);
4620                                 if (expr != null) {
4621                                         if (oper == Operator.Subtraction)
4622                                                 expr = ConvertEnumSubtractionResult (rc, expr);
4623                                         else
4624                                                 expr = ConvertEnumAdditionalResult (expr, enum_type);
4625
4626                                         enum_conversion = GetEnumResultCast (expr.Type);
4627
4628                                         return expr;
4629                                 }
4630
4631                                 var nullable = rc.Module.PredefinedTypes.Nullable;
4632
4633                                 //
4634                                 // Don't try nullable version when nullable type is undefined
4635                                 //
4636                                 if (!nullable.IsDefined)
4637                                         return null;
4638
4639                                 enum_type = nullable.TypeSpec.MakeGenericType (rc.Module, new[] { enum_type });
4640                         }
4641
4642                         expr = ResolveOperatorPredefined (rc, rc.Module.GetPredefinedEnumAritmeticOperators (enum_type, true), false);
4643                         if (expr != null) {
4644                                 if (oper == Operator.Subtraction)
4645                                         expr = ConvertEnumSubtractionResult (rc, expr);
4646                                 else
4647                                         expr = ConvertEnumAdditionalResult (expr, enum_type);
4648
4649                                 enum_conversion = GetEnumResultCast (expr.Type);
4650                         }
4651
4652                         return expr;
4653                 }
4654
4655                 static Expression ConvertEnumAdditionalResult (Expression expr, TypeSpec enumType)
4656                 {
4657                         return EmptyCast.Create (expr, enumType);
4658                 }
4659
4660                 Expression ConvertEnumSubtractionResult (ResolveContext rc, Expression expr)
4661                 {
4662                         //
4663                         // Enumeration subtraction has different result type based on
4664                         // best overload
4665                         //
4666                         TypeSpec result_type;
4667                         if (left.Type == right.Type) {
4668                                 var c = right as EnumConstant;
4669                                 if (c != null && c.IsZeroInteger && !right.Type.IsEnum) {
4670                                         //
4671                                         // LAMESPEC: This is quite unexpected for expression E - 0 the return type is
4672                                         // E which is not what expressions E - 1 or 0 - E return
4673                                         //
4674                                         result_type = left.Type;
4675                                 } else {
4676                                         result_type = left.Type.IsNullableType ?
4677                                                 Nullable.NullableInfo.GetEnumUnderlyingType (rc.Module, left.Type) :
4678                                                 EnumSpec.GetUnderlyingType (left.Type);
4679                                 }
4680                         } else {
4681                                 if (IsEnumOrNullableEnum (left.Type)) {
4682                                         result_type = left.Type;
4683                                 } else {
4684                                         result_type = right.Type;
4685                                 }
4686
4687                                 if (expr is Nullable.LiftedBinaryOperator && !result_type.IsNullableType)
4688                                         result_type = rc.Module.PredefinedTypes.Nullable.TypeSpec.MakeGenericType (rc.Module, new[] { result_type });
4689                         }
4690
4691                         return EmptyCast.Create (expr, result_type);
4692                 }
4693
4694                 public static ConvCast.Mode GetEnumResultCast (TypeSpec type)
4695                 {
4696                         if (type.IsNullableType)
4697                                 type = Nullable.NullableInfo.GetUnderlyingType (type);
4698
4699                         if (type.IsEnum)
4700                                 type = EnumSpec.GetUnderlyingType (type);
4701
4702                         switch (type.BuiltinType) {
4703                         case BuiltinTypeSpec.Type.SByte:
4704                                 return ConvCast.Mode.I4_I1;
4705                         case BuiltinTypeSpec.Type.Byte:
4706                                 return ConvCast.Mode.I4_U1;
4707                         case BuiltinTypeSpec.Type.Short:
4708                                 return ConvCast.Mode.I4_I2;
4709                         case BuiltinTypeSpec.Type.UShort:
4710                                 return ConvCast.Mode.I4_U2;
4711                         }
4712
4713                         return 0;
4714                 }
4715
4716                 //
4717                 // Equality operators rules
4718                 //
4719                 Expression ResolveEquality (ResolveContext ec, TypeSpec l, TypeSpec r, bool primitives_only)
4720                 {
4721                         Expression result;
4722                         type = ec.BuiltinTypes.Bool;
4723                         bool no_arg_conv = false;
4724
4725                         if (!primitives_only) {
4726
4727                                 //
4728                                 // a, Both operands are reference-type values or the value null
4729                                 // b, One operand is a value of type T where T is a type-parameter and
4730                                 // the other operand is the value null. Furthermore T does not have the
4731                                 // value type constraint
4732                                 //
4733                                 // LAMESPEC: Very confusing details in the specification, basically any
4734                                 // reference like type-parameter is allowed
4735                                 //
4736                                 var tparam_l = l as TypeParameterSpec;
4737                                 var tparam_r = r as TypeParameterSpec;
4738                                 if (tparam_l != null) {
4739                                         if (right is NullLiteral) {
4740                                                 if (tparam_l.GetEffectiveBase ().BuiltinType == BuiltinTypeSpec.Type.ValueType)
4741                                                         return null;
4742
4743                                                 left = new BoxedCast (left, ec.BuiltinTypes.Object);
4744                                                 return this;
4745                                         }
4746
4747                                         if (!tparam_l.IsReferenceType)
4748                                                 return null;
4749
4750                                         l = tparam_l.GetEffectiveBase ();
4751                                         left = new BoxedCast (left, l);
4752                                 } else if (left is NullLiteral && tparam_r == null) {
4753                                         if (TypeSpec.IsReferenceType (r))
4754                                                 return this;
4755
4756                                         if (r.Kind == MemberKind.InternalCompilerType)
4757                                                 return null;
4758                                 }
4759
4760                                 if (tparam_r != null) {
4761                                         if (left is NullLiteral) {
4762                                                 if (tparam_r.GetEffectiveBase ().BuiltinType == BuiltinTypeSpec.Type.ValueType)
4763                                                         return null;
4764
4765                                                 right = new BoxedCast (right, ec.BuiltinTypes.Object);
4766                                                 return this;
4767                                         }
4768
4769                                         if (!tparam_r.IsReferenceType)
4770                                                 return null;
4771
4772                                         r = tparam_r.GetEffectiveBase ();
4773                                         right = new BoxedCast (right, r);
4774                                 } else if (right is NullLiteral) {
4775                                         if (TypeSpec.IsReferenceType (l))
4776                                                 return this;
4777
4778                                         if (l.Kind == MemberKind.InternalCompilerType)
4779                                                 return null;
4780                                 }
4781
4782                                 //
4783                                 // LAMESPEC: method groups can be compared when they convert to other side delegate
4784                                 //
4785                                 if (l.IsDelegate) {
4786                                         if (right.eclass == ExprClass.MethodGroup) {
4787                                                 result = Convert.ImplicitConversion (ec, right, l, loc);
4788                                                 if (result == null)
4789                                                         return null;
4790
4791                                                 right = result;
4792                                                 r = l;
4793                                         } else if (r.IsDelegate && l != r) {
4794                                                 return null;
4795                                         }
4796                                 } else if (left.eclass == ExprClass.MethodGroup && r.IsDelegate) {
4797                                         result = Convert.ImplicitConversionRequired (ec, left, r, loc);
4798                                         if (result == null)
4799                                                 return null;
4800
4801                                         left = result;
4802                                         l = r;
4803                                 } else {
4804                                         no_arg_conv = l == r && !l.IsStruct;
4805                                 }
4806                         }
4807
4808                         //
4809                         // bool operator != (string a, string b)
4810                         // bool operator == (string a, string b)
4811                         //
4812                         // bool operator != (Delegate a, Delegate b)
4813                         // bool operator == (Delegate a, Delegate b)
4814                         //
4815                         // bool operator != (bool a, bool b)
4816                         // bool operator == (bool a, bool b)
4817                         //
4818                         // LAMESPEC: Reference equality comparison can apply to value/reference types when
4819                         // they implement an implicit conversion to any of types above. This does
4820                         // not apply when both operands are of same reference type
4821                         //
4822                         if (r.BuiltinType != BuiltinTypeSpec.Type.Object && l.BuiltinType != BuiltinTypeSpec.Type.Object) {
4823                                 result = ResolveOperatorPredefined (ec, ec.BuiltinTypes.OperatorsBinaryEquality, no_arg_conv);  
4824                                 if (result != null)
4825                                         return result;
4826
4827                                 //
4828                                 // Now try lifted version of predefined operators
4829                                 //
4830                                 if (no_arg_conv && !l.IsNullableType) {
4831                                         //
4832                                         // Optimizes cases which won't match
4833                                         //
4834                                 } else {
4835                                         result = ResolveOperatorPredefined (ec, ec.Module.OperatorsBinaryEqualityLifted, no_arg_conv);
4836                                         if (result != null)
4837                                                 return result;
4838                                 }
4839
4840                                 //
4841                                 // The == and != operators permit one operand to be a value of a nullable
4842                                 // type and the other to be the null literal, even if no predefined or user-defined
4843                                 // operator (in unlifted or lifted form) exists for the operation.
4844                                 //
4845                                 if ((l.IsNullableType && right.IsNull) || (r.IsNullableType && left.IsNull)) {
4846                                         var lifted = new Nullable.LiftedBinaryOperator (this);
4847                                         lifted.Left = left;
4848                                         lifted.Right = right;
4849                                         return lifted.Resolve (ec);
4850                                 }
4851                         }
4852
4853                         //
4854                         // bool operator != (object a, object b)
4855                         // bool operator == (object a, object b)
4856                         //
4857                         // An explicit reference conversion exists from the
4858                         // type of either operand to the type of the other operand.
4859                         //
4860
4861                         // Optimize common path
4862                         if (l == r) {
4863                                 return l.Kind == MemberKind.InternalCompilerType || l.Kind == MemberKind.Struct ? null : this;
4864                         }
4865
4866                         if (!Convert.ExplicitReferenceConversionExists (l, r) &&
4867                                 !Convert.ExplicitReferenceConversionExists (r, l))
4868                                 return null;
4869
4870                         // Reject allowed explicit conversions like int->object
4871                         if (!TypeSpec.IsReferenceType (l) || !TypeSpec.IsReferenceType (r))
4872                                 return null;
4873
4874                         if (l.BuiltinType == BuiltinTypeSpec.Type.String || l.BuiltinType == BuiltinTypeSpec.Type.Delegate || l.IsDelegate || MemberCache.GetUserOperator (l, CSharp.Operator.OpType.Equality, false) != null)
4875                                 ec.Report.Warning (253, 2, loc,
4876                                         "Possible unintended reference comparison. Consider casting the right side expression to type `{0}' to get value comparison",
4877                                         l.GetSignatureForError ());
4878
4879                         if (r.BuiltinType == BuiltinTypeSpec.Type.String || r.BuiltinType == BuiltinTypeSpec.Type.Delegate || r.IsDelegate || MemberCache.GetUserOperator (r, CSharp.Operator.OpType.Equality, false) != null)
4880                                 ec.Report.Warning (252, 2, loc,
4881                                         "Possible unintended reference comparison. Consider casting the left side expression to type `{0}' to get value comparison",
4882                                         r.GetSignatureForError ());
4883
4884                         return this;
4885                 }
4886
4887
4888                 Expression ResolveOperatorPointer (ResolveContext ec, TypeSpec l, TypeSpec r)
4889                 {
4890                         //
4891                         // bool operator == (void* x, void* y);
4892                         // bool operator != (void* x, void* y);
4893                         // bool operator < (void* x, void* y);
4894                         // bool operator > (void* x, void* y);
4895                         // bool operator <= (void* x, void* y);
4896                         // bool operator >= (void* x, void* y);
4897                         //
4898                         if ((oper & Operator.ComparisonMask) != 0) {
4899                                 Expression temp;
4900                                 if (!l.IsPointer) {
4901                                         temp = Convert.ImplicitConversion (ec, left, r, left.Location);
4902                                         if (temp == null)
4903                                                 return null;
4904                                         left = temp;
4905                                 }
4906
4907                                 if (!r.IsPointer) {
4908                                         temp = Convert.ImplicitConversion (ec, right, l, right.Location);
4909                                         if (temp == null)
4910                                                 return null;
4911                                         right = temp;
4912                                 }
4913
4914                                 type = ec.BuiltinTypes.Bool;
4915                                 return this;
4916                         }
4917
4918                         return ResolveOperatorPredefined (ec, ec.BuiltinTypes.OperatorsBinaryUnsafe, false);
4919                 }
4920
4921                 //
4922                 // Build-in operators method overloading
4923                 //
4924                 Expression ResolveOperatorPredefined (ResolveContext ec, PredefinedOperator [] operators, bool primitives_only)
4925                 {
4926                         PredefinedOperator best_operator = null;
4927                         TypeSpec l = left.Type;
4928                         TypeSpec r = right.Type;
4929                         Operator oper_mask = oper & ~Operator.ValuesOnlyMask;
4930
4931                         foreach (PredefinedOperator po in operators) {
4932                                 if ((po.OperatorsMask & oper_mask) == 0)
4933                                         continue;
4934
4935                                 if (primitives_only) {
4936                                         if (!po.IsPrimitiveApplicable (l, r))
4937                                                 continue;
4938                                 } else {
4939                                         if (!po.IsApplicable (ec, left, right))
4940                                                 continue;
4941                                 }
4942
4943                                 if (best_operator == null) {
4944                                         best_operator = po;
4945                                         if (primitives_only)
4946                                                 break;
4947
4948                                         continue;
4949                                 }
4950
4951                                 best_operator = po.ResolveBetterOperator (ec, best_operator);
4952
4953                                 if (best_operator == null) {
4954                                         ec.Report.Error (34, loc, "Operator `{0}' is ambiguous on operands of type `{1}' and `{2}'",
4955                                                 OperName (oper), l.GetSignatureForError (), r.GetSignatureForError ());
4956
4957                                         best_operator = po;
4958                                         break;
4959                                 }
4960                         }
4961
4962                         if (best_operator == null)
4963                                 return null;
4964
4965                         return best_operator.ConvertResult (ec, this);
4966                 }
4967
4968                 //
4969                 // Optimize & constant expressions with 0 value
4970                 //
4971                 Expression OptimizeAndOperation (Expression expr)
4972                 {
4973                         Constant rc = right as Constant;
4974                         Constant lc = left as Constant;
4975                         if ((lc != null && lc.IsDefaultValue) || (rc != null && rc.IsDefaultValue)) {
4976                                 //
4977                                 // The result is a constant with side-effect
4978                                 //
4979                                 Constant side_effect = rc == null ?
4980                                         new SideEffectConstant (lc, right, loc) :
4981                                         new SideEffectConstant (rc, left, loc);
4982
4983                                 return ReducedExpression.Create (side_effect, expr);
4984                         }
4985
4986                         return expr;
4987                 }
4988
4989                 //
4990                 // Value types can be compared with the null literal because of the lifting
4991                 // language rules. However the result is always true or false.
4992                 //
4993                 public Expression CreateLiftedValueTypeResult (ResolveContext rc, TypeSpec valueType)
4994                 {
4995                         if (rc.HasSet (ResolveContext.Options.ExpressionTreeConversion)) {
4996                                 type = rc.BuiltinTypes.Bool;
4997                                 return this;
4998                         }
4999
5000                         // FIXME: Handle side effect constants
5001                         Constant c = new BoolConstant (rc.BuiltinTypes, Oper == Operator.Inequality, loc);
5002
5003                         if ((Oper & Operator.EqualityMask) != 0) {
5004                                 rc.Report.Warning (472, 2, loc, "The result of comparing value type `{0}' with null is always `{1}'",
5005                                         valueType.GetSignatureForError (), c.GetValueAsLiteral ());
5006                         } else {
5007                                 rc.Report.Warning (464, 2, loc, "The result of comparing type `{0}' with null is always `{1}'",
5008                                         valueType.GetSignatureForError (), c.GetValueAsLiteral ());
5009                         }
5010
5011                         return c;
5012                 }
5013
5014                 //
5015                 // Performs user-operator overloading
5016                 //
5017                 Expression ResolveUserOperator (ResolveContext rc, Expression left, Expression right)
5018                 {
5019                         Expression oper_expr;
5020
5021                         var op = ConvertBinaryToUserOperator (oper);
5022                         var l = left.Type;
5023                         if (l.IsNullableType)
5024                                 l = Nullable.NullableInfo.GetUnderlyingType (l);
5025                         var r = right.Type;
5026                         if (r.IsNullableType)
5027                                 r = Nullable.NullableInfo.GetUnderlyingType (r);
5028
5029                         IList<MemberSpec> left_operators = MemberCache.GetUserOperator (l, op, false);
5030                         IList<MemberSpec> right_operators = null;
5031
5032                         if (l != r) {
5033                                 right_operators = MemberCache.GetUserOperator (r, op, false);
5034                                 if (right_operators == null && left_operators == null)
5035                                         return null;
5036                         } else if (left_operators == null) {
5037                                 return null;
5038                         }
5039
5040                         Arguments args = new Arguments (2);
5041                         Argument larg = new Argument (left);
5042                         args.Add (larg);        
5043                         Argument rarg = new Argument (right);
5044                         args.Add (rarg);
5045
5046                         //
5047                         // User-defined operator implementations always take precedence
5048                         // over predefined operator implementations
5049                         //
5050                         if (left_operators != null && right_operators != null) {
5051                                 left_operators = CombineUserOperators (left_operators, right_operators);
5052                         } else if (right_operators != null) {
5053                                 left_operators = right_operators;
5054                         }
5055
5056                         const OverloadResolver.Restrictions restr = OverloadResolver.Restrictions.ProbingOnly |
5057                                 OverloadResolver.Restrictions.NoBaseMembers | OverloadResolver.Restrictions.BaseMembersIncluded;
5058
5059                         var res = new OverloadResolver (left_operators, restr, loc);
5060
5061                         var oper_method = res.ResolveOperator (rc, ref args);
5062                         if (oper_method == null) {
5063                                 //
5064                                 // Logical && and || cannot be lifted
5065                                 //
5066                                 if ((oper & Operator.LogicalMask) != 0)
5067                                         return null;
5068
5069                                 //
5070                                 // Apply lifted user operators only for liftable types. Implicit conversion
5071                                 // to nullable types is not allowed
5072                                 //
5073                                 if (!IsLiftedOperatorApplicable ())
5074                                         return null;
5075
5076                                 // TODO: Cache the result in module container
5077                                 var lifted_methods = CreateLiftedOperators (rc, left_operators);
5078                                 if (lifted_methods == null)
5079                                         return null;
5080
5081                                 res = new OverloadResolver (lifted_methods, restr | OverloadResolver.Restrictions.ProbingOnly, loc);
5082
5083                                 oper_method = res.ResolveOperator (rc, ref args);
5084                                 if (oper_method == null)
5085                                         return null;
5086
5087                                 MethodSpec best_original = null;
5088                                 foreach (MethodSpec ms in left_operators) {
5089                                         if (ms.MemberDefinition == oper_method.MemberDefinition) {
5090                                                 best_original = ms;
5091                                                 break;
5092                                         }
5093                                 }
5094
5095                                 if (rc.HasSet (ResolveContext.Options.ExpressionTreeConversion)) {
5096                                         //
5097                                         // Expression trees use lifted notation in this case
5098                                         //
5099                                         this.left = Convert.ImplicitConversion (rc, left, oper_method.Parameters.Types[0], left.Location);
5100                                         this.right = Convert.ImplicitConversion (rc, right, oper_method.Parameters.Types[1], left.Location);
5101                                 }
5102
5103                                 var ptypes = best_original.Parameters.Types;
5104
5105                                 if (left.IsNull || right.IsNull) {
5106                                         //
5107                                         // The lifted operator produces a null value if one or both operands are null
5108                                         //
5109                                         if ((oper & (Operator.ArithmeticMask | Operator.ShiftMask | Operator.BitwiseMask)) != 0) {
5110                                                 type = oper_method.ReturnType;
5111                                                 return Nullable.LiftedNull.CreateFromExpression (rc, this);
5112                                         }
5113
5114                                         //
5115                                         // The lifted operator produces the value false if one or both operands are null for
5116                                         // relational operators.
5117                                         //
5118                                         if ((oper & Operator.RelationalMask) != 0) {
5119                                                 //
5120                                                 // CSC BUG: This should be different warning, csc reports CS0458 with bool? which is wrong
5121                                                 // because return type is actually bool
5122                                                 //
5123                                                 return CreateLiftedValueTypeResult (rc, left.IsNull ? ptypes [1] : ptypes [0]);
5124                                         }
5125
5126                                         if ((oper & Operator.EqualityMask) != 0 && ((left.IsNull && !right.Type.IsNullableType) || !left.Type.IsNullableType)) {
5127                                                 return CreateLiftedValueTypeResult (rc, left.IsNull ? ptypes [1] : ptypes [0]);
5128                                         }
5129                                 }
5130
5131                                 type = oper_method.ReturnType;
5132                                 var lifted = new Nullable.LiftedBinaryOperator (this);
5133                                 lifted.UserOperator = best_original;
5134
5135                                 if (left.Type.IsNullableType && !ptypes[0].IsNullableType) {
5136                                         lifted.UnwrapLeft = new Nullable.Unwrap (left);
5137                                 }
5138
5139                                 if (right.Type.IsNullableType && !ptypes[1].IsNullableType) {
5140                                         lifted.UnwrapRight = new Nullable.Unwrap (right);
5141                                 }
5142
5143                                 lifted.Left = Convert.ImplicitConversion (rc, lifted.UnwrapLeft ?? left, ptypes[0], left.Location);
5144                                 lifted.Right = Convert.ImplicitConversion (rc, lifted.UnwrapRight ?? right, ptypes[1], right.Location);
5145
5146                                 return lifted.Resolve (rc);
5147                         }
5148                         
5149                         if ((oper & Operator.LogicalMask) != 0) {
5150                                 // TODO: CreateExpressionTree is allocated every time           
5151                                 oper_expr = new ConditionalLogicalOperator (oper_method, args, CreateExpressionTree,
5152                                         oper == Operator.LogicalAnd, loc).Resolve (rc);
5153                         } else {
5154                                 oper_expr = new UserOperatorCall (oper_method, args, CreateExpressionTree, loc);
5155                         }
5156
5157                         this.left = larg.Expr;
5158                         this.right = rarg.Expr;
5159
5160                         return oper_expr;
5161                 }
5162
5163                 bool IsLiftedOperatorApplicable ()
5164                 {
5165                         if (left.Type.IsNullableType) {
5166                                 if ((oper & Operator.EqualityMask) != 0)
5167                                         return !right.IsNull;
5168
5169                                 return true;
5170                         }
5171
5172                         if (right.Type.IsNullableType) {
5173                                 if ((oper & Operator.EqualityMask) != 0)
5174                                         return !left.IsNull;
5175
5176                                 return true;
5177                         }
5178
5179                         if (TypeSpec.IsValueType (left.Type))
5180                                 return right.IsNull;
5181
5182                         if (TypeSpec.IsValueType (right.Type))
5183                                 return left.IsNull;
5184
5185                         return false;
5186                 }
5187
5188                 List<MemberSpec> CreateLiftedOperators (ResolveContext rc, IList<MemberSpec> operators)
5189                 {
5190                         var nullable_type = rc.Module.PredefinedTypes.Nullable.TypeSpec;
5191                         if (nullable_type == null)
5192                                 return null;
5193
5194                         //
5195                         // Lifted operators permit predefined and user-defined operators that operate
5196                         // on non-nullable value types to also be used with nullable forms of those types.
5197                         // Lifted operators are constructed from predefined and user-defined operators
5198                         // that meet certain requirements
5199                         //
5200                         List<MemberSpec> lifted = null;
5201                         foreach (MethodSpec oper in operators) {
5202                                 TypeSpec rt;
5203                                 if ((Oper & Operator.ComparisonMask) != 0) {
5204                                         //
5205                                         // Result type must be of type bool for lifted comparison operators
5206                                         //
5207                                         rt = oper.ReturnType;
5208                                         if (rt.BuiltinType != BuiltinTypeSpec.Type.Bool)
5209                                                 continue;
5210                                 } else {
5211                                         if (!TypeSpec.IsNonNullableValueType (oper.ReturnType))
5212                                                 continue;
5213
5214                                         rt = null;
5215                                 }
5216
5217                                 var ptypes = oper.Parameters.Types;
5218                                 if (!TypeSpec.IsNonNullableValueType (ptypes [0]) || !TypeSpec.IsNonNullableValueType (ptypes [1]))
5219                                         continue;
5220
5221                                 //
5222                                 // LAMESPEC: I am not sure why but for equality operators to be lifted
5223                                 // both types have to match
5224                                 //
5225                                 if ((Oper & Operator.EqualityMask) != 0 && ptypes [0] != ptypes [1])
5226                                         continue;
5227
5228                                 if (lifted == null)
5229                                         lifted = new List<MemberSpec> ();
5230
5231                                 //
5232                                 // The lifted form is constructed by adding a single ? modifier to each operand and
5233                                 // result type except for comparison operators where return type is bool
5234                                 //
5235                                 if (rt == null)
5236                                         rt = nullable_type.MakeGenericType (rc.Module, new[] { oper.ReturnType });
5237
5238                                 var parameters = ParametersCompiled.CreateFullyResolved (
5239                                         nullable_type.MakeGenericType (rc.Module, new [] { ptypes[0] }),
5240                                         nullable_type.MakeGenericType (rc.Module, new [] { ptypes[1] }));
5241
5242                                 var lifted_op = new MethodSpec (oper.Kind, oper.DeclaringType, oper.MemberDefinition,
5243                                         rt, parameters, oper.Modifiers);
5244
5245                                 lifted.Add (lifted_op);
5246                         }
5247
5248                         return lifted;
5249                 }
5250
5251                 //
5252                 // Merge two sets of user operators into one, they are mostly distinguish
5253                 // except when they share base type and it contains an operator
5254                 //
5255                 static IList<MemberSpec> CombineUserOperators (IList<MemberSpec> left, IList<MemberSpec> right)
5256                 {
5257                         var combined = new List<MemberSpec> (left.Count + right.Count);
5258                         combined.AddRange (left);
5259                         foreach (var r in right) {
5260                                 bool same = false;
5261                                 foreach (var l in left) {
5262                                         if (l.DeclaringType == r.DeclaringType) {
5263                                                 same = true;
5264                                                 break;
5265                                         }
5266                                 }
5267
5268                                 if (!same)
5269                                         combined.Add (r);
5270                         }
5271
5272                         return combined;
5273                 }
5274
5275                 void CheckOutOfRangeComparison (ResolveContext ec, Constant c, TypeSpec type)
5276                 {
5277                         if (c is IntegralConstant || c is CharConstant) {
5278                                 try {
5279                                         c.ConvertExplicitly (true, type);
5280                                 } catch (OverflowException) {
5281                                         ec.Report.Warning (652, 2, loc,
5282                                                 "A comparison between a constant and a variable is useless. The constant is out of the range of the variable type `{0}'",
5283                                                 type.GetSignatureForError ());
5284                                 }
5285                         }
5286                 }
5287
5288                 /// <remarks>
5289                 ///   EmitBranchable is called from Statement.EmitBoolExpression in the
5290                 ///   context of a conditional bool expression.  This function will return
5291                 ///   false if it is was possible to use EmitBranchable, or true if it was.
5292                 ///
5293                 ///   The expression's code is generated, and we will generate a branch to `target'
5294                 ///   if the resulting expression value is equal to isTrue
5295                 /// </remarks>
5296                 public override void EmitBranchable (EmitContext ec, Label target, bool on_true)
5297                 {
5298                         if (ec.HasSet (BuilderContext.Options.AsyncBody) && right.ContainsEmitWithAwait ()) {
5299                                 left = left.EmitToField (ec);
5300
5301                                 if ((oper & Operator.LogicalMask) == 0) {
5302                                         right = right.EmitToField (ec);
5303                                 }
5304                         }
5305
5306                         //
5307                         // This is more complicated than it looks, but its just to avoid
5308                         // duplicated tests: basically, we allow ==, !=, >, <, >= and <=
5309                         // but on top of that we want for == and != to use a special path
5310                         // if we are comparing against null
5311                         //
5312                         if ((oper & Operator.EqualityMask) != 0 && (left is Constant || right is Constant)) {
5313                                 bool my_on_true = oper == Operator.Inequality ? on_true : !on_true;
5314                                 
5315                                 //
5316                                 // put the constant on the rhs, for simplicity
5317                                 //
5318                                 if (left is Constant) {
5319                                         Expression swap = right;
5320                                         right = left;
5321                                         left = swap;
5322                                 }
5323                                 
5324                                 //
5325                                 // brtrue/brfalse works with native int only
5326                                 //
5327                                 if (((Constant) right).IsZeroInteger && right.Type.BuiltinType != BuiltinTypeSpec.Type.Long && right.Type.BuiltinType != BuiltinTypeSpec.Type.ULong) {
5328                                         left.EmitBranchable (ec, target, my_on_true);
5329                                         return;
5330                                 }
5331                                 if (right.Type.BuiltinType == BuiltinTypeSpec.Type.Bool) {
5332                                         // right is a boolean, and it's not 'false' => it is 'true'
5333                                         left.EmitBranchable (ec, target, !my_on_true);
5334                                         return;
5335                                 }
5336
5337                         } else if (oper == Operator.LogicalAnd) {
5338
5339                                 if (on_true) {
5340                                         Label tests_end = ec.DefineLabel ();
5341                                         
5342                                         left.EmitBranchable (ec, tests_end, false);
5343                                         right.EmitBranchable (ec, target, true);
5344                                         ec.MarkLabel (tests_end);                                       
5345                                 } else {
5346                                         //
5347                                         // This optimizes code like this 
5348                                         // if (true && i > 4)
5349                                         //
5350                                         if (!(left is Constant))
5351                                                 left.EmitBranchable (ec, target, false);
5352
5353                                         if (!(right is Constant)) 
5354                                                 right.EmitBranchable (ec, target, false);
5355                                 }
5356                                 
5357                                 return;
5358                                 
5359                         } else if (oper == Operator.LogicalOr){
5360                                 if (on_true) {
5361                                         left.EmitBranchable (ec, target, true);
5362                                         right.EmitBranchable (ec, target, true);
5363                                         
5364                                 } else {
5365                                         Label tests_end = ec.DefineLabel ();
5366                                         left.EmitBranchable (ec, tests_end, true);
5367                                         right.EmitBranchable (ec, target, false);
5368                                         ec.MarkLabel (tests_end);
5369                                 }
5370                                 
5371                                 return;
5372
5373                         } else if ((oper & Operator.ComparisonMask) == 0) {
5374                                 base.EmitBranchable (ec, target, on_true);
5375                                 return;
5376                         }
5377                         
5378                         left.Emit (ec);
5379                         right.Emit (ec);
5380
5381                         TypeSpec t = left.Type;
5382                         bool is_float = IsFloat (t);
5383                         bool is_unsigned = is_float || IsUnsigned (t);
5384                         
5385                         switch (oper){
5386                         case Operator.Equality:
5387                                 if (on_true)
5388                                         ec.Emit (OpCodes.Beq, target);
5389                                 else
5390                                         ec.Emit (OpCodes.Bne_Un, target);
5391                                 break;
5392
5393                         case Operator.Inequality:
5394                                 if (on_true)
5395                                         ec.Emit (OpCodes.Bne_Un, target);
5396                                 else
5397                                         ec.Emit (OpCodes.Beq, target);
5398                                 break;
5399
5400                         case Operator.LessThan:
5401                                 if (on_true)
5402                                         if (is_unsigned && !is_float)
5403                                                 ec.Emit (OpCodes.Blt_Un, target);
5404                                         else
5405                                                 ec.Emit (OpCodes.Blt, target);
5406                                 else
5407                                         if (is_unsigned)
5408                                                 ec.Emit (OpCodes.Bge_Un, target);
5409                                         else
5410                                                 ec.Emit (OpCodes.Bge, target);
5411                                 break;
5412
5413                         case Operator.GreaterThan:
5414                                 if (on_true)
5415                                         if (is_unsigned && !is_float)
5416                                                 ec.Emit (OpCodes.Bgt_Un, target);
5417                                         else
5418                                                 ec.Emit (OpCodes.Bgt, target);
5419                                 else
5420                                         if (is_unsigned)
5421                                                 ec.Emit (OpCodes.Ble_Un, target);
5422                                         else
5423                                                 ec.Emit (OpCodes.Ble, target);
5424                                 break;
5425
5426                         case Operator.LessThanOrEqual:
5427                                 if (on_true)
5428                                         if (is_unsigned && !is_float)
5429                                                 ec.Emit (OpCodes.Ble_Un, target);
5430                                         else
5431                                                 ec.Emit (OpCodes.Ble, target);
5432                                 else
5433                                         if (is_unsigned)
5434                                                 ec.Emit (OpCodes.Bgt_Un, target);
5435                                         else
5436                                                 ec.Emit (OpCodes.Bgt, target);
5437                                 break;
5438
5439
5440                         case Operator.GreaterThanOrEqual:
5441                                 if (on_true)
5442                                         if (is_unsigned && !is_float)
5443                                                 ec.Emit (OpCodes.Bge_Un, target);
5444                                         else
5445                                                 ec.Emit (OpCodes.Bge, target);
5446                                 else
5447                                         if (is_unsigned)
5448                                                 ec.Emit (OpCodes.Blt_Un, target);
5449                                         else
5450                                                 ec.Emit (OpCodes.Blt, target);
5451                                 break;
5452                         default:
5453                                 throw new InternalErrorException (oper.ToString ());
5454                         }
5455                 }
5456                 
5457                 public override void Emit (EmitContext ec)
5458                 {
5459                         if (ec.HasSet (BuilderContext.Options.AsyncBody) && right.ContainsEmitWithAwait ()) {
5460                                 left = left.EmitToField (ec);
5461
5462                                 if ((oper & Operator.LogicalMask) == 0) {
5463                                         right = right.EmitToField (ec);
5464                                 }
5465                         }
5466
5467                         //
5468                         // Handle short-circuit operators differently
5469                         // than the rest
5470                         //
5471                         if ((oper & Operator.LogicalMask) != 0) {
5472                                 Label load_result = ec.DefineLabel ();
5473                                 Label end = ec.DefineLabel ();
5474
5475                                 bool is_or = oper == Operator.LogicalOr;
5476                                 left.EmitBranchable (ec, load_result, is_or);
5477                                 right.Emit (ec);
5478                                 ec.Emit (OpCodes.Br_S, end);
5479                                 
5480                                 ec.MarkLabel (load_result);
5481                                 ec.EmitInt (is_or ? 1 : 0);
5482                                 ec.MarkLabel (end);
5483                                 return;
5484                         }
5485
5486                         //
5487                         // Optimize zero-based operations which cannot be optimized at expression level
5488                         //
5489                         if (oper == Operator.Subtraction) {
5490                                 var lc = left as IntegralConstant;
5491                                 if (lc != null && lc.IsDefaultValue) {
5492                                         right.Emit (ec);
5493                                         ec.Emit (OpCodes.Neg);
5494                                         return;
5495                                 }
5496                         }
5497
5498                         EmitOperator (ec, left, right);
5499                 }
5500
5501                 public void EmitOperator (EmitContext ec, Expression left, Expression right)
5502                 {
5503                         left.Emit (ec);
5504                         right.Emit (ec);
5505
5506                         EmitOperatorOpcode (ec, oper, left.Type, right);
5507
5508                         //
5509                         // Emit result enumerable conversion this way because it's quite complicated get it
5510                         // to resolved tree because expression tree cannot see it.
5511                         //
5512                         if (enum_conversion != 0)
5513                                 ConvCast.Emit (ec, enum_conversion);
5514                 }
5515
5516                 public override void EmitSideEffect (EmitContext ec)
5517                 {
5518                         if ((oper & Operator.LogicalMask) != 0 ||
5519                                 (ec.HasSet (EmitContext.Options.CheckedScope) && (oper == Operator.Multiply || oper == Operator.Addition || oper == Operator.Subtraction))) {
5520                                 base.EmitSideEffect (ec);
5521                         } else {
5522                                 left.EmitSideEffect (ec);
5523                                 right.EmitSideEffect (ec);
5524                         }
5525                 }
5526
5527                 public override Expression EmitToField (EmitContext ec)
5528                 {
5529                         if ((oper & Operator.LogicalMask) == 0) {
5530                                 var await_expr = left as Await;
5531                                 if (await_expr != null && right.IsSideEffectFree) {
5532                                         await_expr.Statement.EmitPrologue (ec);
5533                                         left = await_expr.Statement.GetResultExpression (ec);
5534                                         return this;
5535                                 }
5536
5537                                 await_expr = right as Await;
5538                                 if (await_expr != null && left.IsSideEffectFree) {
5539                                         await_expr.Statement.EmitPrologue (ec);
5540                                         right = await_expr.Statement.GetResultExpression (ec);
5541                                         return this;
5542                                 }
5543                         }
5544
5545                         return base.EmitToField (ec);
5546                 }
5547
5548                 protected override void CloneTo (CloneContext clonectx, Expression t)
5549                 {
5550                         Binary target = (Binary) t;
5551
5552                         target.left = left.Clone (clonectx);
5553                         target.right = right.Clone (clonectx);
5554                 }
5555
5556                 public Expression CreateCallSiteBinder (ResolveContext ec, Arguments args)
5557                 {
5558                         Arguments binder_args = new Arguments (4);
5559
5560                         MemberAccess sle = new MemberAccess (new MemberAccess (
5561                                 new QualifiedAliasMember (QualifiedAliasMember.GlobalAlias, "System", loc), "Linq", loc), "Expressions", loc);
5562
5563                         CSharpBinderFlags flags = 0;
5564                         if (ec.HasSet (ResolveContext.Options.CheckedScope))
5565                                 flags = CSharpBinderFlags.CheckedContext;
5566
5567                         if ((oper & Operator.LogicalMask) != 0)
5568                                 flags |= CSharpBinderFlags.BinaryOperationLogical;
5569
5570                         binder_args.Add (new Argument (new EnumConstant (new IntLiteral (ec.BuiltinTypes, (int) flags, loc), ec.Module.PredefinedTypes.BinderFlags.Resolve ())));
5571                         binder_args.Add (new Argument (new MemberAccess (new MemberAccess (sle, "ExpressionType", loc), GetOperatorExpressionTypeName (), loc)));
5572                         binder_args.Add (new Argument (new TypeOf (ec.CurrentType, loc)));                                                                      
5573                         binder_args.Add (new Argument (new ImplicitlyTypedArrayCreation (args.CreateDynamicBinderArguments (ec), loc)));
5574
5575                         return new Invocation (new MemberAccess (new TypeExpression (ec.Module.PredefinedTypes.Binder.TypeSpec, loc), "BinaryOperation", loc), binder_args);
5576                 }
5577                 
5578                 public override Expression CreateExpressionTree (ResolveContext ec)
5579                 {
5580                         return CreateExpressionTree (ec, null);
5581                 }
5582
5583                 public Expression CreateExpressionTree (ResolveContext ec, Expression method)           
5584                 {
5585                         string method_name;
5586                         bool lift_arg = false;
5587                         
5588                         switch (oper) {
5589                         case Operator.Addition:
5590                                 if (method == null && ec.HasSet (ResolveContext.Options.CheckedScope) && !IsFloat (type))
5591                                         method_name = "AddChecked";
5592                                 else
5593                                         method_name = "Add";
5594                                 break;
5595                         case Operator.BitwiseAnd:
5596                                 method_name = "And";
5597                                 break;
5598                         case Operator.BitwiseOr:
5599                                 method_name = "Or";
5600                                 break;
5601                         case Operator.Division:
5602                                 method_name = "Divide";
5603                                 break;
5604                         case Operator.Equality:
5605                                 method_name = "Equal";
5606                                 lift_arg = true;
5607                                 break;
5608                         case Operator.ExclusiveOr:
5609                                 method_name = "ExclusiveOr";
5610                                 break;                          
5611                         case Operator.GreaterThan:
5612                                 method_name = "GreaterThan";
5613                                 lift_arg = true;
5614                                 break;
5615                         case Operator.GreaterThanOrEqual:
5616                                 method_name = "GreaterThanOrEqual";
5617                                 lift_arg = true;
5618                                 break;
5619                         case Operator.Inequality:
5620                                 method_name = "NotEqual";
5621                                 lift_arg = true;
5622                                 break;
5623                         case Operator.LeftShift:
5624                                 method_name = "LeftShift";
5625                                 break;
5626                         case Operator.LessThan:
5627                                 method_name = "LessThan";
5628                                 lift_arg = true;
5629                                 break;
5630                         case Operator.LessThanOrEqual:
5631                                 method_name = "LessThanOrEqual";
5632                                 lift_arg = true;
5633                                 break;
5634                         case Operator.LogicalAnd:
5635                                 method_name = "AndAlso";
5636                                 break;
5637                         case Operator.LogicalOr:
5638                                 method_name = "OrElse";
5639                                 break;
5640                         case Operator.Modulus:
5641                                 method_name = "Modulo";
5642                                 break;
5643                         case Operator.Multiply:
5644                                 if (method == null && ec.HasSet (ResolveContext.Options.CheckedScope) && !IsFloat (type))
5645                                         method_name = "MultiplyChecked";
5646                                 else
5647                                         method_name = "Multiply";
5648                                 break;
5649                         case Operator.RightShift:
5650                                 method_name = "RightShift";
5651                                 break;
5652                         case Operator.Subtraction:
5653                                 if (method == null && ec.HasSet (ResolveContext.Options.CheckedScope) && !IsFloat (type))
5654                                         method_name = "SubtractChecked";
5655                                 else
5656                                         method_name = "Subtract";
5657                                 break;
5658
5659                         default:
5660                                 throw new InternalErrorException ("Unknown expression tree binary operator " + oper);
5661                         }
5662
5663                         Arguments args = new Arguments (2);
5664                         args.Add (new Argument (left.CreateExpressionTree (ec)));
5665                         args.Add (new Argument (right.CreateExpressionTree (ec)));
5666                         if (method != null) {
5667                                 if (lift_arg)
5668                                         args.Add (new Argument (new BoolLiteral (ec.BuiltinTypes, false, loc)));
5669
5670                                 args.Add (new Argument (method));
5671                         }
5672                         
5673                         return CreateExpressionFactoryCall (ec, method_name, args);
5674                 }
5675                 
5676                 public override object Accept (StructuralVisitor visitor)
5677                 {
5678                         return visitor.Visit (this);
5679                 }
5680
5681         }
5682         
5683         //
5684         // Represents the operation a + b [+ c [+ d [+ ...]]], where a is a string
5685         // b, c, d... may be strings or objects.
5686         //
5687         public class StringConcat : Expression
5688         {
5689                 Arguments arguments;
5690                 
5691                 StringConcat (Location loc)
5692                 {
5693                         this.loc = loc;
5694                         arguments = new Arguments (2);
5695                 }
5696
5697                 public override bool ContainsEmitWithAwait ()
5698                 {
5699                         return arguments.ContainsEmitWithAwait ();
5700                 }
5701
5702                 public static StringConcat Create (ResolveContext rc, Expression left, Expression right, Location loc)
5703                 {
5704                         if (left.eclass == ExprClass.Unresolved || right.eclass == ExprClass.Unresolved)
5705                                 throw new ArgumentException ();
5706
5707                         var s = new StringConcat (loc);
5708                         s.type = rc.BuiltinTypes.String;
5709                         s.eclass = ExprClass.Value;
5710
5711                         s.Append (rc, left);
5712                         s.Append (rc, right);
5713                         return s;
5714                 }
5715
5716                 public override Expression CreateExpressionTree (ResolveContext ec)
5717                 {
5718                         Argument arg = arguments [0];
5719                         return CreateExpressionAddCall (ec, arg, arg.CreateExpressionTree (ec), 1);
5720                 }
5721
5722                 //
5723                 // Creates nested calls tree from an array of arguments used for IL emit
5724                 //
5725                 Expression CreateExpressionAddCall (ResolveContext ec, Argument left, Expression left_etree, int pos)
5726                 {
5727                         Arguments concat_args = new Arguments (2);
5728                         Arguments add_args = new Arguments (3);
5729
5730                         concat_args.Add (left);
5731                         add_args.Add (new Argument (left_etree));
5732
5733                         concat_args.Add (arguments [pos]);
5734                         add_args.Add (new Argument (arguments [pos].CreateExpressionTree (ec)));
5735
5736                         var methods = GetConcatMethodCandidates ();
5737                         if (methods == null)
5738                                 return null;
5739
5740                         var res = new OverloadResolver (methods, OverloadResolver.Restrictions.NoBaseMembers, loc);
5741                         var method = res.ResolveMember<MethodSpec> (ec, ref concat_args);
5742                         if (method == null)
5743                                 return null;
5744
5745                         add_args.Add (new Argument (new TypeOfMethod (method, loc)));
5746
5747                         Expression expr = CreateExpressionFactoryCall (ec, "Add", add_args);
5748                         if (++pos == arguments.Count)
5749                                 return expr;
5750
5751                         left = new Argument (new EmptyExpression (method.ReturnType));
5752                         return CreateExpressionAddCall (ec, left, expr, pos);
5753                 }
5754
5755                 protected override Expression DoResolve (ResolveContext ec)
5756                 {
5757                         return this;
5758                 }
5759                 
5760                 void Append (ResolveContext rc, Expression operand)
5761                 {
5762                         //
5763                         // Constant folding
5764                         //
5765                         StringConstant sc = operand as StringConstant;
5766                         if (sc != null) {
5767                                 if (arguments.Count != 0) {
5768                                         Argument last_argument = arguments [arguments.Count - 1];
5769                                         StringConstant last_expr_constant = last_argument.Expr as StringConstant;
5770                                         if (last_expr_constant != null) {
5771                                                 last_argument.Expr = new StringConstant (rc.BuiltinTypes, last_expr_constant.Value + sc.Value, sc.Location);
5772                                                 return;
5773                                         }
5774                                 }
5775                         } else {
5776                                 //
5777                                 // Multiple (3+) concatenation are resolved as multiple StringConcat instances
5778                                 //
5779                                 StringConcat concat_oper = operand as StringConcat;
5780                                 if (concat_oper != null) {
5781                                         arguments.AddRange (concat_oper.arguments);
5782                                         return;
5783                                 }
5784                         }
5785
5786                         arguments.Add (new Argument (operand));
5787                 }
5788
5789                 IList<MemberSpec> GetConcatMethodCandidates ()
5790                 {
5791                         return MemberCache.FindMembers (type, "Concat", true);
5792                 }
5793
5794                 public override void Emit (EmitContext ec)
5795                 {
5796                         // Optimize by removing any extra null arguments, they are no-op
5797                         for (int i = 0; i < arguments.Count; ++i) {
5798                                 if (arguments[i].Expr is NullConstant)
5799                                         arguments.RemoveAt (i--);
5800                         }
5801
5802                         var members = GetConcatMethodCandidates ();
5803                         var res = new OverloadResolver (members, OverloadResolver.Restrictions.NoBaseMembers, loc);
5804                         var method = res.ResolveMember<MethodSpec> (new ResolveContext (ec.MemberContext), ref arguments);
5805                         if (method != null) {
5806                                 var call = new CallEmitter ();
5807                                 call.EmitPredefined (ec, method, arguments, false);
5808                         }
5809                 }
5810
5811                 public override void FlowAnalysis (FlowAnalysisContext fc)
5812                 {
5813                         arguments.FlowAnalysis (fc);
5814                 }
5815
5816                 public override SLE.Expression MakeExpression (BuilderContext ctx)
5817                 {
5818                         if (arguments.Count != 2)
5819                                 throw new NotImplementedException ("arguments.Count != 2");
5820
5821                         var concat = typeof (string).GetMethod ("Concat", new[] { typeof (object), typeof (object) });
5822                         return SLE.Expression.Add (arguments[0].Expr.MakeExpression (ctx), arguments[1].Expr.MakeExpression (ctx), concat);
5823                 }
5824         }
5825
5826         //
5827         // User-defined conditional logical operator
5828         //
5829         public class ConditionalLogicalOperator : UserOperatorCall
5830         {
5831                 readonly bool is_and;
5832                 Expression oper_expr;
5833
5834                 public ConditionalLogicalOperator (MethodSpec oper, Arguments arguments, Func<ResolveContext, Expression, Expression> expr_tree, bool is_and, Location loc)
5835                         : base (oper, arguments, expr_tree, loc)
5836                 {
5837                         this.is_and = is_and;
5838                         eclass = ExprClass.Unresolved;
5839                 }
5840                 
5841                 protected override Expression DoResolve (ResolveContext ec)
5842                 {
5843                         AParametersCollection pd = oper.Parameters;
5844                         if (!TypeSpecComparer.IsEqual (type, pd.Types[0]) || !TypeSpecComparer.IsEqual (type, pd.Types[1])) {
5845                                 ec.Report.Error (217, loc,
5846                                         "A user-defined operator `{0}' must have each parameter type and return type of the same type in order to be applicable as a short circuit operator",
5847                                         oper.GetSignatureForError ());
5848                                 return null;
5849                         }
5850
5851                         Expression left_dup = new EmptyExpression (type);
5852                         Expression op_true = GetOperatorTrue (ec, left_dup, loc);
5853                         Expression op_false = GetOperatorFalse (ec, left_dup, loc);
5854                         if (op_true == null || op_false == null) {
5855                                 ec.Report.Error (218, loc,
5856                                         "The type `{0}' must have operator `true' and operator `false' defined when `{1}' is used as a short circuit operator",
5857                                         type.GetSignatureForError (), oper.GetSignatureForError ());
5858                                 return null;
5859                         }
5860
5861                         oper_expr = is_and ? op_false : op_true;
5862                         eclass = ExprClass.Value;
5863                         return this;
5864                 }
5865
5866                 public override void Emit (EmitContext ec)
5867                 {
5868                         Label end_target = ec.DefineLabel ();
5869
5870                         //
5871                         // Emit and duplicate left argument
5872                         //
5873                         bool right_contains_await = ec.HasSet (BuilderContext.Options.AsyncBody) && arguments[1].Expr.ContainsEmitWithAwait ();
5874                         if (right_contains_await) {
5875                                 arguments[0] = arguments[0].EmitToField (ec, false);
5876                                 arguments[0].Expr.Emit (ec);
5877                         } else {
5878                                 arguments[0].Expr.Emit (ec);
5879                                 ec.Emit (OpCodes.Dup);
5880                                 arguments.RemoveAt (0);
5881                         }
5882
5883                         oper_expr.EmitBranchable (ec, end_target, true);
5884
5885                         base.Emit (ec);
5886
5887                         if (right_contains_await) {
5888                                 //
5889                                 // Special handling when right expression contains await and left argument
5890                                 // could not be left on stack before logical branch
5891                                 //
5892                                 Label skip_left_load = ec.DefineLabel ();
5893                                 ec.Emit (OpCodes.Br_S, skip_left_load);
5894                                 ec.MarkLabel (end_target);
5895                                 arguments[0].Expr.Emit (ec);
5896                                 ec.MarkLabel (skip_left_load);
5897                         } else {
5898                                 ec.MarkLabel (end_target);
5899                         }
5900                 }
5901         }
5902
5903         public class PointerArithmetic : Expression {
5904                 Expression left, right;
5905                 readonly Binary.Operator op;
5906
5907                 //
5908                 // We assume that `l' is always a pointer
5909                 //
5910                 public PointerArithmetic (Binary.Operator op, Expression l, Expression r, TypeSpec t, Location loc)
5911                 {
5912                         type = t;
5913                         this.loc = loc;
5914                         left = l;
5915                         right = r;
5916                         this.op = op;
5917                 }
5918
5919                 public override bool ContainsEmitWithAwait ()
5920                 {
5921                         throw new NotImplementedException ();
5922                 }
5923
5924                 public override Expression CreateExpressionTree (ResolveContext ec)
5925                 {
5926                         Error_PointerInsideExpressionTree (ec);
5927                         return null;
5928                 }
5929
5930                 protected override Expression DoResolve (ResolveContext ec)
5931                 {
5932                         eclass = ExprClass.Variable;
5933
5934                         var pc = left.Type as PointerContainer;
5935                         if (pc != null && pc.Element.Kind == MemberKind.Void) {
5936                                 Error_VoidPointerOperation (ec);
5937                                 return null;
5938                         }
5939                         
5940                         return this;
5941                 }
5942
5943                 public override void Emit (EmitContext ec)
5944                 {
5945                         TypeSpec op_type = left.Type;
5946                         
5947                         // It must be either array or fixed buffer
5948                         TypeSpec element;
5949                         if (TypeManager.HasElementType (op_type)) {
5950                                 element = TypeManager.GetElementType (op_type);
5951                         } else {
5952                                 FieldExpr fe = left as FieldExpr;
5953                                 if (fe != null)
5954                                         element = ((FixedFieldSpec) (fe.Spec)).ElementType;
5955                                 else
5956                                         element = op_type;
5957                         }
5958
5959                         int size = BuiltinTypeSpec.GetSize(element);
5960                         TypeSpec rtype = right.Type;
5961                         
5962                         if ((op & Binary.Operator.SubtractionMask) != 0 && rtype.IsPointer){
5963                                 //
5964                                 // handle (pointer - pointer)
5965                                 //
5966                                 left.Emit (ec);
5967                                 right.Emit (ec);
5968                                 ec.Emit (OpCodes.Sub);
5969
5970                                 if (size != 1){
5971                                         if (size == 0)
5972                                                 ec.Emit (OpCodes.Sizeof, element);
5973                                         else 
5974                                                 ec.EmitInt (size);
5975                                         ec.Emit (OpCodes.Div);
5976                                 }
5977                                 ec.Emit (OpCodes.Conv_I8);
5978                         } else {
5979                                 //
5980                                 // handle + and - on (pointer op int)
5981                                 //
5982                                 Constant left_const = left as Constant;
5983                                 if (left_const != null) {
5984                                         //
5985                                         // Optimize ((T*)null) pointer operations
5986                                         //
5987                                         if (left_const.IsDefaultValue) {
5988                                                 left = EmptyExpression.Null;
5989                                         } else {
5990                                                 left_const = null;
5991                                         }
5992                                 }
5993
5994                                 left.Emit (ec);
5995
5996                                 var right_const = right as Constant;
5997                                 if (right_const != null) {
5998                                         //
5999                                         // Optimize 0-based arithmetic
6000                                         //
6001                                         if (right_const.IsDefaultValue)
6002                                                 return;
6003
6004                                         if (size != 0)
6005                                                 right = new IntConstant (ec.BuiltinTypes, size, right.Location);
6006                                         else
6007                                                 right = new SizeOf (new TypeExpression (element, right.Location), right.Location);
6008                                         
6009                                         // TODO: Should be the checks resolve context sensitive?
6010                                         ResolveContext rc = new ResolveContext (ec.MemberContext, ResolveContext.Options.UnsafeScope);
6011                                         right = new Binary (Binary.Operator.Multiply, right, right_const).Resolve (rc);
6012                                         if (right == null)
6013                                                 return;
6014                                 }
6015
6016                                 right.Emit (ec);
6017                                 if (right_const == null) {
6018                                         switch (rtype.BuiltinType) {
6019                                         case BuiltinTypeSpec.Type.SByte:
6020                                         case BuiltinTypeSpec.Type.Byte:
6021                                         case BuiltinTypeSpec.Type.Short:
6022                                         case BuiltinTypeSpec.Type.UShort:
6023                                         case BuiltinTypeSpec.Type.Int:
6024                                                 ec.Emit (OpCodes.Conv_I);
6025                                                 break;
6026                                         case BuiltinTypeSpec.Type.UInt:
6027                                                 ec.Emit (OpCodes.Conv_U);
6028                                                 break;
6029                                         }
6030                                 }
6031
6032                                 if (right_const == null && size != 1){
6033                                         if (size == 0)
6034                                                 ec.Emit (OpCodes.Sizeof, element);
6035                                         else 
6036                                                 ec.EmitInt (size);
6037                                         if (rtype.BuiltinType == BuiltinTypeSpec.Type.Long || rtype.BuiltinType == BuiltinTypeSpec.Type.ULong)
6038                                                 ec.Emit (OpCodes.Conv_I8);
6039
6040                                         Binary.EmitOperatorOpcode (ec, Binary.Operator.Multiply, rtype, right);
6041                                 }
6042
6043                                 if (left_const == null) {
6044                                         if (rtype.BuiltinType == BuiltinTypeSpec.Type.Long)
6045                                                 ec.Emit (OpCodes.Conv_I);
6046                                         else if (rtype.BuiltinType == BuiltinTypeSpec.Type.ULong)
6047                                                 ec.Emit (OpCodes.Conv_U);
6048
6049                                         Binary.EmitOperatorOpcode (ec, op, op_type, right);
6050                                 }
6051                         }
6052                 }
6053         }
6054
6055         //
6056         // A boolean-expression is an expression that yields a result
6057         // of type bool
6058         //
6059         public class BooleanExpression : ShimExpression
6060         {
6061                 public BooleanExpression (Expression expr)
6062                         : base (expr)
6063                 {
6064                         this.loc = expr.Location;
6065                 }
6066
6067                 public override Expression CreateExpressionTree (ResolveContext ec)
6068                 {
6069                         // TODO: We should emit IsTrue (v4) instead of direct user operator
6070                         // call but that would break csc compatibility
6071                         return base.CreateExpressionTree (ec);
6072                 }
6073
6074                 protected override Expression DoResolve (ResolveContext ec)
6075                 {
6076                         // A boolean-expression is required to be of a type
6077                         // that can be implicitly converted to bool or of
6078                         // a type that implements operator true
6079
6080                         expr = expr.Resolve (ec);
6081                         if (expr == null)
6082                                 return null;
6083
6084                         Assign ass = expr as Assign;
6085                         if (ass != null && ass.Source is Constant) {
6086                                 ec.Report.Warning (665, 3, loc,
6087                                         "Assignment in conditional expression is always constant. Did you mean to use `==' instead ?");
6088                         }
6089
6090                         if (expr.Type.BuiltinType == BuiltinTypeSpec.Type.Bool)
6091                                 return expr;
6092
6093                         if (expr.Type.BuiltinType == BuiltinTypeSpec.Type.Dynamic) {
6094                                 Arguments args = new Arguments (1);
6095                                 args.Add (new Argument (expr));
6096                                 return DynamicUnaryConversion.CreateIsTrue (ec, args, loc).Resolve (ec);
6097                         }
6098
6099                         type = ec.BuiltinTypes.Bool;
6100                         Expression converted = Convert.ImplicitConversion (ec, expr, type, loc);
6101                         if (converted != null)
6102                                 return converted;
6103
6104                         //
6105                         // If no implicit conversion to bool exists, try using `operator true'
6106                         //
6107                         converted = GetOperatorTrue (ec, expr, loc);
6108                         if (converted == null) {
6109                                 expr.Error_ValueCannotBeConverted (ec, type, false);
6110                                 return null;
6111                         }
6112
6113                         return converted;
6114                 }
6115                 
6116                 public override object Accept (StructuralVisitor visitor)
6117                 {
6118                         return visitor.Visit (this);
6119                 }
6120         }
6121
6122         public class BooleanExpressionFalse : Unary
6123         {
6124                 public BooleanExpressionFalse (Expression expr)
6125                         : base (Operator.LogicalNot, expr, expr.Location)
6126                 {
6127                 }
6128
6129                 protected override Expression ResolveOperator (ResolveContext ec, Expression expr)
6130                 {
6131                         return GetOperatorFalse (ec, expr, loc) ?? base.ResolveOperator (ec, expr);
6132                 }
6133         }
6134         
6135         /// <summary>
6136         ///   Implements the ternary conditional operator (?:)
6137         /// </summary>
6138         public class Conditional : Expression {
6139                 Expression expr, true_expr, false_expr;
6140
6141                 public Conditional (Expression expr, Expression true_expr, Expression false_expr, Location loc)
6142                 {
6143                         this.expr = expr;
6144                         this.true_expr = true_expr;
6145                         this.false_expr = false_expr;
6146                         this.loc = loc;
6147                 }
6148
6149                 #region Properties
6150
6151                 public Expression Expr {
6152                         get {
6153                                 return expr;
6154                         }
6155                 }
6156
6157                 public Expression TrueExpr {
6158                         get {
6159                                 return true_expr;
6160                         }
6161                 }
6162
6163                 public Expression FalseExpr {
6164                         get {
6165                                 return false_expr;
6166                         }
6167                 }
6168
6169                 #endregion
6170
6171                 public override bool ContainsEmitWithAwait ()
6172                 {
6173                         return Expr.ContainsEmitWithAwait () || true_expr.ContainsEmitWithAwait () || false_expr.ContainsEmitWithAwait ();
6174                 }
6175
6176                 public override Expression CreateExpressionTree (ResolveContext ec)
6177                 {
6178                         Arguments args = new Arguments (3);
6179                         args.Add (new Argument (expr.CreateExpressionTree (ec)));
6180                         args.Add (new Argument (true_expr.CreateExpressionTree (ec)));
6181                         args.Add (new Argument (false_expr.CreateExpressionTree (ec)));
6182                         return CreateExpressionFactoryCall (ec, "Condition", args);
6183                 }
6184
6185                 protected override Expression DoResolve (ResolveContext ec)
6186                 {
6187                         expr = expr.Resolve (ec);
6188                         true_expr = true_expr.Resolve (ec);
6189                         false_expr = false_expr.Resolve (ec);
6190
6191                         if (true_expr == null || false_expr == null || expr == null)
6192                                 return null;
6193
6194                         eclass = ExprClass.Value;
6195                         TypeSpec true_type = true_expr.Type;
6196                         TypeSpec false_type = false_expr.Type;
6197                         type = true_type;
6198
6199                         //
6200                         // First, if an implicit conversion exists from true_expr
6201                         // to false_expr, then the result type is of type false_expr.Type
6202                         //
6203                         if (!TypeSpecComparer.IsEqual (true_type, false_type)) {
6204                                 Expression conv = Convert.ImplicitConversion (ec, true_expr, false_type, loc);
6205                                 if (conv != null && true_type.BuiltinType != BuiltinTypeSpec.Type.Dynamic) {
6206                                         //
6207                                         // Check if both can convert implicitly to each other's type
6208                                         //
6209                                         type = false_type;
6210
6211                                         if (false_type.BuiltinType != BuiltinTypeSpec.Type.Dynamic) {
6212                                                 var conv_false_expr = Convert.ImplicitConversion (ec, false_expr, true_type, loc);
6213                                                 //
6214                                                 // LAMESPEC: There seems to be hardcoded promotition to int type when
6215                                                 // both sides are numeric constants and one side is int constant and
6216                                                 // other side is numeric constant convertible to int.
6217                                                 //
6218                                                 // var res = condition ? (short)1 : 1;
6219                                                 //
6220                                                 // Type of res is int even if according to the spec the conversion is
6221                                                 // ambiguous because 1 literal can be converted to short.
6222                                                 //
6223                                                 if (conv_false_expr != null) {
6224                                                         if (conv_false_expr.Type.BuiltinType == BuiltinTypeSpec.Type.Int && conv is Constant) {
6225                                                                 type = true_type;
6226                                                                 conv_false_expr = null;
6227                                                         } else if (type.BuiltinType == BuiltinTypeSpec.Type.Int && conv_false_expr is Constant) {
6228                                                                 conv_false_expr = null;
6229                                                         }
6230                                                 }
6231
6232                                                 if (conv_false_expr != null) {
6233                                                         ec.Report.Error (172, true_expr.Location,
6234                                                                 "Type of conditional expression cannot be determined as `{0}' and `{1}' convert implicitly to each other",
6235                                                                         true_type.GetSignatureForError (), false_type.GetSignatureForError ());
6236                                                 }
6237                                         }
6238
6239                                         true_expr = conv;
6240                                         if (true_expr.Type != type)
6241                                                 true_expr = EmptyCast.Create (true_expr, type);
6242                                 } else if ((conv = Convert.ImplicitConversion (ec, false_expr, true_type, loc)) != null) {
6243                                         false_expr = conv;
6244                                 } else {
6245                                         if (false_type != InternalType.ErrorType) {
6246                                                 ec.Report.Error (173, true_expr.Location,
6247                                                         "Type of conditional expression cannot be determined because there is no implicit conversion between `{0}' and `{1}'",
6248                                                         true_type.GetSignatureForError (), false_type.GetSignatureForError ());
6249                                         }
6250                                         return null;
6251                                 }
6252                         }
6253
6254                         Constant c = expr as Constant;
6255                         if (c != null) {
6256                                 bool is_false = c.IsDefaultValue;
6257
6258                                 //
6259                                 // Don't issue the warning for constant expressions
6260                                 //
6261                                 if (!(is_false ? true_expr is Constant : false_expr is Constant)) {
6262                                         // CSC: Missing warning
6263                                         Warning_UnreachableExpression (ec, is_false ? true_expr.Location : false_expr.Location);
6264                                 }
6265
6266                                 return ReducedExpression.Create (
6267                                         is_false ? false_expr : true_expr, this,
6268                                         false_expr is Constant && true_expr is Constant).Resolve (ec);
6269                         }
6270
6271                         return this;
6272                 }
6273
6274                 public override void Emit (EmitContext ec)
6275                 {
6276                         Label false_target = ec.DefineLabel ();
6277                         Label end_target = ec.DefineLabel ();
6278
6279                         expr.EmitBranchable (ec, false_target, false);
6280                         true_expr.Emit (ec);
6281
6282                         //
6283                         // Verifier doesn't support interface merging. When there are two types on
6284                         // the stack without common type hint and the common type is an interface.
6285                         // Use temporary local to give verifier hint on what type to unify the stack
6286                         //
6287                         if (type.IsInterface && true_expr is EmptyCast && false_expr is EmptyCast) {
6288                                 var temp = ec.GetTemporaryLocal (type);
6289                                 ec.Emit (OpCodes.Stloc, temp);
6290                                 ec.Emit (OpCodes.Ldloc, temp);
6291                                 ec.FreeTemporaryLocal (temp, type);
6292                         }
6293
6294                         ec.Emit (OpCodes.Br, end_target);
6295                         ec.MarkLabel (false_target);
6296                         false_expr.Emit (ec);
6297                         ec.MarkLabel (end_target);
6298                 }
6299
6300                 public override void FlowAnalysis (FlowAnalysisContext fc)
6301                 {
6302                         expr.FlowAnalysisConditional (fc);
6303                         var expr_true = fc.DefiniteAssignmentOnTrue;
6304                         var expr_false = fc.DefiniteAssignmentOnFalse;
6305
6306                         fc.BranchDefiniteAssignment (expr_true);
6307                         true_expr.FlowAnalysis (fc);
6308                         var true_fc = fc.DefiniteAssignment;
6309
6310                         fc.BranchDefiniteAssignment (expr_false);
6311                         false_expr.FlowAnalysis (fc);
6312
6313                         fc.DefiniteAssignment &= true_fc;
6314                 }
6315
6316                 public override void FlowAnalysisConditional (FlowAnalysisContext fc)
6317                 {
6318                         expr.FlowAnalysisConditional (fc);
6319                         var expr_true = fc.DefiniteAssignmentOnTrue;
6320                         var expr_false = fc.DefiniteAssignmentOnFalse;
6321
6322                         fc.DefiniteAssignmentOnTrue = fc.DefiniteAssignmentOnFalse = fc.DefiniteAssignment = new DefiniteAssignmentBitSet (expr_true);
6323                         true_expr.FlowAnalysisConditional (fc);
6324                         var true_fc = fc.DefiniteAssignment;
6325                         var true_da_true = fc.DefiniteAssignmentOnTrue;
6326                         var true_da_false = fc.DefiniteAssignmentOnFalse;
6327
6328                         fc.DefiniteAssignmentOnTrue = fc.DefiniteAssignmentOnFalse = fc.DefiniteAssignment = new DefiniteAssignmentBitSet (expr_false);
6329                         false_expr.FlowAnalysisConditional (fc);
6330
6331                         fc.DefiniteAssignment &= true_fc;
6332                         fc.DefiniteAssignmentOnTrue = true_da_true & fc.DefiniteAssignmentOnTrue;
6333                         fc.DefiniteAssignmentOnFalse = true_da_false & fc.DefiniteAssignmentOnFalse;
6334                 }
6335
6336                 protected override void CloneTo (CloneContext clonectx, Expression t)
6337                 {
6338                         Conditional target = (Conditional) t;
6339
6340                         target.expr = expr.Clone (clonectx);
6341                         target.true_expr = true_expr.Clone (clonectx);
6342                         target.false_expr = false_expr.Clone (clonectx);
6343                 }
6344         }
6345
6346         public abstract class VariableReference : Expression, IAssignMethod, IMemoryLocation, IVariableReference
6347         {
6348                 LocalTemporary temp;
6349
6350                 #region Abstract
6351                 public abstract HoistedVariable GetHoistedVariable (AnonymousExpression ae);
6352                 public abstract void SetHasAddressTaken ();
6353
6354                 public abstract bool IsLockedByStatement { get; set; }
6355
6356                 public abstract bool IsFixed { get; }
6357                 public abstract bool IsRef { get; }
6358                 public abstract string Name { get; }
6359
6360                 //
6361                 // Variable IL data, it has to be protected to encapsulate hoisted variables
6362                 //
6363                 protected abstract ILocalVariable Variable { get; }
6364                 
6365                 //
6366                 // Variable flow-analysis data
6367                 //
6368                 public abstract VariableInfo VariableInfo { get; }
6369                 #endregion
6370
6371                 public virtual void AddressOf (EmitContext ec, AddressOp mode)
6372                 {
6373                         HoistedVariable hv = GetHoistedVariable (ec);
6374                         if (hv != null) {
6375                                 hv.AddressOf (ec, mode);
6376                                 return;
6377                         }
6378
6379                         Variable.EmitAddressOf (ec);
6380                 }
6381
6382                 public override bool ContainsEmitWithAwait ()
6383                 {
6384                         return false;
6385                 }
6386
6387                 public override Expression CreateExpressionTree (ResolveContext ec)
6388                 {
6389                         HoistedVariable hv = GetHoistedVariable (ec);
6390                         if (hv != null)
6391                                 return hv.CreateExpressionTree ();
6392
6393                         Arguments arg = new Arguments (1);
6394                         arg.Add (new Argument (this));
6395                         return CreateExpressionFactoryCall (ec, "Constant", arg);
6396                 }
6397
6398                 public override Expression DoResolveLValue (ResolveContext rc, Expression right_side)
6399                 {
6400                         if (IsLockedByStatement) {
6401                                 rc.Report.Warning (728, 2, loc,
6402                                         "Possibly incorrect assignment to `{0}' which is the argument to a using or lock statement",
6403                                         Name);
6404                         }
6405
6406                         return this;
6407                 }
6408
6409                 public override void Emit (EmitContext ec)
6410                 {
6411                         Emit (ec, false);
6412                 }
6413
6414                 public override void EmitSideEffect (EmitContext ec)
6415                 {
6416                         // do nothing
6417                 }
6418
6419                 //
6420                 // This method is used by parameters that are references, that are
6421                 // being passed as references:  we only want to pass the pointer (that
6422                 // is already stored in the parameter, not the address of the pointer,
6423                 // and not the value of the variable).
6424                 //
6425                 public void EmitLoad (EmitContext ec)
6426                 {
6427                         Variable.Emit (ec);
6428                 }
6429
6430                 public void Emit (EmitContext ec, bool leave_copy)
6431                 {
6432                         HoistedVariable hv = GetHoistedVariable (ec);
6433                         if (hv != null) {
6434                                 hv.Emit (ec, leave_copy);
6435                                 return;
6436                         }
6437
6438                         EmitLoad (ec);
6439
6440                         if (IsRef) {
6441                                 //
6442                                 // If we are a reference, we loaded on the stack a pointer
6443                                 // Now lets load the real value
6444                                 //
6445                                 ec.EmitLoadFromPtr (type);
6446                         }
6447
6448                         if (leave_copy) {
6449                                 ec.Emit (OpCodes.Dup);
6450
6451                                 if (IsRef) {
6452                                         temp = new LocalTemporary (Type);
6453                                         temp.Store (ec);
6454                                 }
6455                         }
6456                 }
6457
6458                 public void EmitAssign (EmitContext ec, Expression source, bool leave_copy,
6459                                         bool prepare_for_load)
6460                 {
6461                         HoistedVariable hv = GetHoistedVariable (ec);
6462                         if (hv != null) {
6463                                 hv.EmitAssign (ec, source, leave_copy, prepare_for_load);
6464                                 return;
6465                         }
6466
6467                         New n_source = source as New;
6468                         if (n_source != null) {
6469                                 if (!n_source.Emit (ec, this)) {
6470                                         if (leave_copy) {
6471                                                 EmitLoad (ec);
6472                                                 if (IsRef)
6473                                                         ec.EmitLoadFromPtr (type);
6474                                         }
6475                                         return;
6476                                 }
6477                         } else {
6478                                 if (IsRef)
6479                                         EmitLoad (ec);
6480
6481                                 source.Emit (ec);
6482                         }
6483
6484                         if (leave_copy) {
6485                                 ec.Emit (OpCodes.Dup);
6486                                 if (IsRef) {
6487                                         temp = new LocalTemporary (Type);
6488                                         temp.Store (ec);
6489                                 }
6490                         }
6491
6492                         if (IsRef)
6493                                 ec.EmitStoreFromPtr (type);
6494                         else
6495                                 Variable.EmitAssign (ec);
6496
6497                         if (temp != null) {
6498                                 temp.Emit (ec);
6499                                 temp.Release (ec);
6500                         }
6501                 }
6502
6503                 public override Expression EmitToField (EmitContext ec)
6504                 {
6505                         HoistedVariable hv = GetHoistedVariable (ec);
6506                         if (hv != null) {
6507                                 return hv.EmitToField (ec);
6508                         }
6509
6510                         return base.EmitToField (ec);
6511                 }
6512
6513                 public HoistedVariable GetHoistedVariable (ResolveContext rc)
6514                 {
6515                         return GetHoistedVariable (rc.CurrentAnonymousMethod);
6516                 }
6517
6518                 public HoistedVariable GetHoistedVariable (EmitContext ec)
6519                 {
6520                         return GetHoistedVariable (ec.CurrentAnonymousMethod);
6521                 }
6522
6523                 public override string GetSignatureForError ()
6524                 {
6525                         return Name;
6526                 }
6527
6528                 public bool IsHoisted {
6529                         get { return GetHoistedVariable ((AnonymousExpression) null) != null; }
6530                 }
6531         }
6532
6533         //
6534         // Resolved reference to a local variable
6535         //
6536         public class LocalVariableReference : VariableReference
6537         {
6538                 public LocalVariable local_info;
6539
6540                 public LocalVariableReference (LocalVariable li, Location l)
6541                 {
6542                         this.local_info = li;
6543                         loc = l;
6544                 }
6545
6546                 public override VariableInfo VariableInfo {
6547                         get { return local_info.VariableInfo; }
6548                 }
6549
6550                 public override HoistedVariable GetHoistedVariable (AnonymousExpression ae)
6551                 {
6552                         return local_info.HoistedVariant;
6553                 }
6554
6555                 #region Properties
6556
6557                 //              
6558                 // A local variable is always fixed
6559                 //
6560                 public override bool IsFixed {
6561                         get {
6562                                 return true;
6563                         }
6564                 }
6565
6566                 public override bool IsLockedByStatement {
6567                         get {
6568                                 return local_info.IsLocked;
6569                         }
6570                         set {
6571                                 local_info.IsLocked = value;
6572                         }
6573                 }
6574
6575                 public override bool IsRef {
6576                         get { return false; }
6577                 }
6578
6579                 public override string Name {
6580                         get { return local_info.Name; }
6581                 }
6582
6583                 #endregion
6584
6585                 public override void FlowAnalysis (FlowAnalysisContext fc)
6586                 {
6587                         VariableInfo variable_info = VariableInfo;
6588                         if (variable_info == null)
6589                                 return;
6590
6591                         if (fc.IsDefinitelyAssigned (variable_info))
6592                                 return;
6593
6594                         fc.Report.Error (165, loc, "Use of unassigned local variable `{0}'", Name);
6595                         variable_info.SetAssigned (fc.DefiniteAssignment, true);
6596                 }
6597
6598                 public override void SetHasAddressTaken ()
6599                 {
6600                         local_info.SetHasAddressTaken ();
6601                 }
6602
6603                 void DoResolveBase (ResolveContext ec)
6604                 {
6605                         eclass = ExprClass.Variable;
6606                         type = local_info.Type;
6607
6608                         //
6609                         // If we are referencing a variable from the external block
6610                         // flag it for capturing
6611                         //
6612                         if (ec.MustCaptureVariable (local_info)) {
6613                                 if (local_info.AddressTaken) {
6614                                         AnonymousMethodExpression.Error_AddressOfCapturedVar (ec, this, loc);
6615                                 } else if (local_info.IsFixed) {
6616                                         ec.Report.Error (1764, loc,
6617                                                 "Cannot use fixed local `{0}' inside an anonymous method, lambda expression or query expression",
6618                                                 GetSignatureForError ());
6619                                 }
6620
6621                                 if (ec.IsVariableCapturingRequired) {
6622                                         AnonymousMethodStorey storey = local_info.Block.Explicit.CreateAnonymousMethodStorey (ec);
6623                                         storey.CaptureLocalVariable (ec, local_info);
6624                                 }
6625                         }
6626                 }
6627
6628                 protected override Expression DoResolve (ResolveContext ec)
6629                 {
6630                         local_info.SetIsUsed ();
6631
6632                         DoResolveBase (ec);
6633
6634                         if (local_info.Type == InternalType.VarOutType) {
6635                                 ec.Report.Error (8048, loc, "Cannot use uninitialized variable `{0}'",
6636                                         GetSignatureForError ());
6637
6638                                 type = InternalType.ErrorType;
6639                         }
6640
6641                         return this;
6642                 }
6643
6644                 public override Expression DoResolveLValue (ResolveContext ec, Expression rhs)
6645                 {
6646                         //
6647                         // Don't be too pedantic when variable is used as out param or for some broken code
6648                         // which uses property/indexer access to run some initialization
6649                         //
6650                         if (rhs == EmptyExpression.OutAccess || rhs.eclass == ExprClass.PropertyAccess || rhs.eclass == ExprClass.IndexerAccess)
6651                                 local_info.SetIsUsed ();
6652
6653                         if (local_info.IsReadonly && !ec.HasAny (ResolveContext.Options.FieldInitializerScope | ResolveContext.Options.UsingInitializerScope)) {
6654                                 if (rhs == EmptyExpression.LValueMemberAccess) {
6655                                         // CS1654 already reported
6656                                 } else {
6657                                         int code;
6658                                         string msg;
6659                                         if (rhs == EmptyExpression.OutAccess) {
6660                                                 code = 1657; msg = "Cannot pass `{0}' as a ref or out argument because it is a `{1}'";
6661                                         } else if (rhs == EmptyExpression.LValueMemberOutAccess) {
6662                                                 code = 1655; msg = "Cannot pass members of `{0}' as ref or out arguments because it is a `{1}'";
6663                                         } else if (rhs == EmptyExpression.UnaryAddress) {
6664                                                 code = 459; msg = "Cannot take the address of {1} `{0}'";
6665                                         } else {
6666                                                 code = 1656; msg = "Cannot assign to `{0}' because it is a `{1}'";
6667                                         }
6668                                         ec.Report.Error (code, loc, msg, Name, local_info.GetReadOnlyContext ());
6669                                 }
6670                         }
6671
6672                         if (eclass == ExprClass.Unresolved)
6673                                 DoResolveBase (ec);
6674
6675                         return base.DoResolveLValue (ec, rhs);
6676                 }
6677
6678                 public override int GetHashCode ()
6679                 {
6680                         return local_info.GetHashCode ();
6681                 }
6682
6683                 public override bool Equals (object obj)
6684                 {
6685                         LocalVariableReference lvr = obj as LocalVariableReference;
6686                         if (lvr == null)
6687                                 return false;
6688
6689                         return local_info == lvr.local_info;
6690                 }
6691
6692                 protected override ILocalVariable Variable {
6693                         get { return local_info; }
6694                 }
6695
6696                 public override string ToString ()
6697                 {
6698                         return String.Format ("{0} ({1}:{2})", GetType (), Name, loc);
6699                 }
6700
6701                 protected override void CloneTo (CloneContext clonectx, Expression t)
6702                 {
6703                         // Nothing
6704                 }
6705         }
6706
6707         /// <summary>
6708         ///   This represents a reference to a parameter in the intermediate
6709         ///   representation.
6710         /// </summary>
6711         public class ParameterReference : VariableReference
6712         {
6713                 protected ParametersBlock.ParameterInfo pi;
6714
6715                 public ParameterReference (ParametersBlock.ParameterInfo pi, Location loc)
6716                 {
6717                         this.pi = pi;
6718                         this.loc = loc;
6719                 }
6720
6721                 #region Properties
6722
6723                 public override bool IsLockedByStatement {
6724                         get {
6725                                 return pi.IsLocked;
6726                         }
6727                         set     {
6728                                 pi.IsLocked = value;
6729                         }
6730                 }
6731
6732                 public override bool IsRef {
6733                         get { return (pi.Parameter.ModFlags & Parameter.Modifier.RefOutMask) != 0; }
6734                 }
6735
6736                 bool HasOutModifier {
6737                         get { return (pi.Parameter.ModFlags & Parameter.Modifier.OUT) != 0; }
6738                 }
6739
6740                 public override HoistedVariable GetHoistedVariable (AnonymousExpression ae)
6741                 {
6742                         return pi.Parameter.HoistedVariant;
6743                 }
6744
6745                 //
6746                 // A ref or out parameter is classified as a moveable variable, even 
6747                 // if the argument given for the parameter is a fixed variable
6748                 //              
6749                 public override bool IsFixed {
6750                         get { return !IsRef; }
6751                 }
6752
6753                 public override string Name {
6754                         get { return Parameter.Name; }
6755                 }
6756
6757                 public Parameter Parameter {
6758                         get { return pi.Parameter; }
6759                 }
6760
6761                 public override VariableInfo VariableInfo {
6762                         get { return pi.VariableInfo; }
6763                 }
6764
6765                 protected override ILocalVariable Variable {
6766                         get { return Parameter; }
6767                 }
6768
6769                 #endregion
6770
6771                 public override void AddressOf (EmitContext ec, AddressOp mode)
6772                 {
6773                         //
6774                         // ParameterReferences might already be a reference
6775                         //
6776                         if (IsRef) {
6777                                 EmitLoad (ec);
6778                                 return;
6779                         }
6780
6781                         base.AddressOf (ec, mode);
6782                 }
6783
6784                 public override void SetHasAddressTaken ()
6785                 {
6786                         Parameter.HasAddressTaken = true;
6787                 }
6788
6789                 bool DoResolveBase (ResolveContext ec)
6790                 {
6791                         if (eclass != ExprClass.Unresolved)
6792                                 return true;
6793
6794                         type = pi.ParameterType;
6795                         eclass = ExprClass.Variable;
6796
6797                         //
6798                         // If we are referencing a parameter from the external block
6799                         // flag it for capturing
6800                         //
6801                         if (ec.MustCaptureVariable (pi)) {
6802                                 if (Parameter.HasAddressTaken)
6803                                         AnonymousMethodExpression.Error_AddressOfCapturedVar (ec, this, loc);
6804
6805                                 if (IsRef) {
6806                                         ec.Report.Error (1628, loc,
6807                                                 "Parameter `{0}' cannot be used inside `{1}' when using `ref' or `out' modifier",
6808                                                 Name, ec.CurrentAnonymousMethod.ContainerType);
6809                                 }
6810
6811                                 if (ec.IsVariableCapturingRequired && !pi.Block.ParametersBlock.IsExpressionTree) {
6812                                         AnonymousMethodStorey storey = pi.Block.Explicit.CreateAnonymousMethodStorey (ec);
6813                                         storey.CaptureParameter (ec, pi, this);
6814                                 }
6815                         }
6816
6817                         return true;
6818                 }
6819
6820                 public override int GetHashCode ()
6821                 {
6822                         return Name.GetHashCode ();
6823                 }
6824
6825                 public override bool Equals (object obj)
6826                 {
6827                         ParameterReference pr = obj as ParameterReference;
6828                         if (pr == null)
6829                                 return false;
6830
6831                         return Name == pr.Name;
6832                 }
6833         
6834                 protected override void CloneTo (CloneContext clonectx, Expression target)
6835                 {
6836                         // Nothing to clone
6837                         return;
6838                 }
6839
6840                 public override Expression CreateExpressionTree (ResolveContext ec)
6841                 {
6842                         HoistedVariable hv = GetHoistedVariable (ec);
6843                         if (hv != null)
6844                                 return hv.CreateExpressionTree ();
6845
6846                         return Parameter.ExpressionTreeVariableReference ();
6847                 }
6848
6849                 protected override Expression DoResolve (ResolveContext ec)
6850                 {
6851                         if (!DoResolveBase (ec))
6852                                 return null;
6853
6854                         return this;
6855                 }
6856
6857                 public override Expression DoResolveLValue (ResolveContext ec, Expression right_side)
6858                 {
6859                         if (!DoResolveBase (ec))
6860                                 return null;
6861
6862                         if (Parameter.HoistedVariant != null)
6863                                 Parameter.HoistedVariant.IsAssigned = true;
6864
6865                         return base.DoResolveLValue (ec, right_side);
6866                 }
6867
6868                 public override void FlowAnalysis (FlowAnalysisContext fc)
6869                 {
6870                         VariableInfo variable_info = VariableInfo;
6871                         if (variable_info == null)
6872                                 return;
6873
6874                         if (fc.IsDefinitelyAssigned (variable_info))
6875                                 return;
6876
6877                         fc.Report.Error (269, loc, "Use of unassigned out parameter `{0}'", Name);
6878                         fc.SetVariableAssigned (variable_info);
6879                 }
6880         }
6881
6882         /// <summary>
6883         ///   Invocation of methods or delegates.
6884         /// </summary>
6885         public class Invocation : ExpressionStatement
6886         {
6887                 public class Predefined : Invocation
6888                 {
6889                         public Predefined (MethodGroupExpr expr, Arguments arguments)
6890                                 : base (expr, arguments)
6891                         {
6892                                 this.mg = expr;
6893                         }
6894
6895                         protected override MethodGroupExpr DoResolveOverload (ResolveContext rc)
6896                         {
6897                                 mg.BestCandidate.CheckObsoleteness (rc, loc);
6898
6899                                 return mg;
6900                         }
6901                 }
6902
6903                 protected Arguments arguments;
6904                 protected Expression expr;
6905                 protected MethodGroupExpr mg;
6906                 bool conditional_access_receiver;
6907                 
6908                 public Invocation (Expression expr, Arguments arguments)
6909                 {
6910                         this.expr = expr;               
6911                         this.arguments = arguments;
6912                         if (expr != null) {
6913                                 loc = expr.Location;
6914                         }
6915                 }
6916
6917                 #region Properties
6918                 public Arguments Arguments {
6919                         get {
6920                                 return arguments;
6921                         }
6922                 }
6923                 
6924                 public Expression Exp {
6925                         get {
6926                                 return expr;
6927                         }
6928                 }
6929
6930                 public MethodGroupExpr MethodGroup {
6931                         get {
6932                                 return mg;
6933                         }
6934                 }
6935
6936                 public override Location StartLocation {
6937                         get {
6938                                 return expr.StartLocation;
6939                         }
6940                 }
6941
6942                 #endregion
6943
6944                 public override MethodGroupExpr CanReduceLambda (AnonymousMethodBody body)
6945                 {
6946                         if (MethodGroup == null)
6947                                 return null;
6948
6949                         var candidate = MethodGroup.BestCandidate;
6950                         if (candidate == null || !(candidate.IsStatic || Exp is This))
6951                                 return null;
6952
6953                         var args_count = arguments == null ? 0 : arguments.Count;
6954                         if (args_count != body.Parameters.Count)
6955                                 return null;
6956
6957                         var lambda_parameters = body.Block.Parameters.FixedParameters;
6958                         for (int i = 0; i < args_count; ++i) {
6959                                 var pr = arguments[i].Expr as ParameterReference;
6960                                 if (pr == null)
6961                                         return null;
6962
6963                                 if (lambda_parameters[i] != pr.Parameter)
6964                                         return null;
6965
6966                                 if ((lambda_parameters[i].ModFlags & Parameter.Modifier.RefOutMask) != (pr.Parameter.ModFlags & Parameter.Modifier.RefOutMask))
6967                                         return null;
6968                         }
6969
6970                         var emg = MethodGroup as ExtensionMethodGroupExpr;
6971                         if (emg != null) {
6972                                 var mg = MethodGroupExpr.CreatePredefined (candidate, candidate.DeclaringType, MethodGroup.Location);
6973                                 if (candidate.IsGeneric) {
6974                                         var targs = new TypeExpression [candidate.Arity];
6975                                         for (int i = 0; i < targs.Length; ++i) {
6976                                                 targs[i] = new TypeExpression (candidate.TypeArguments[i], MethodGroup.Location);
6977                                         }
6978
6979                                         mg.SetTypeArguments (null, new TypeArguments (targs));
6980                                 }
6981
6982                                 return mg;
6983                         }
6984
6985                         return MethodGroup;
6986                 }
6987
6988                 protected override void CloneTo (CloneContext clonectx, Expression t)
6989                 {
6990                         Invocation target = (Invocation) t;
6991
6992                         if (arguments != null)
6993                                 target.arguments = arguments.Clone (clonectx);
6994
6995                         target.expr = expr.Clone (clonectx);
6996                 }
6997
6998                 public override bool ContainsEmitWithAwait ()
6999                 {
7000                         if (arguments != null && arguments.ContainsEmitWithAwait ())
7001                                 return true;
7002
7003                         return mg.ContainsEmitWithAwait ();
7004                 }
7005
7006                 public override Expression CreateExpressionTree (ResolveContext ec)
7007                 {
7008                         Expression instance = mg.IsInstance ?
7009                                 mg.InstanceExpression.CreateExpressionTree (ec) :
7010                                 new NullLiteral (loc);
7011
7012                         var args = Arguments.CreateForExpressionTree (ec, arguments,
7013                                 instance,
7014                                 mg.CreateExpressionTree (ec));
7015
7016                         return CreateExpressionFactoryCall (ec, "Call", args);
7017                 }
7018
7019                 void ResolveConditionalAccessReceiver (ResolveContext rc)
7020                 {
7021                         if (!rc.HasSet (ResolveContext.Options.DontSetConditionalAccessReceiver) && expr.HasConditionalAccess ()) {
7022                                 conditional_access_receiver = true;
7023                         }
7024                 }
7025
7026                 protected override Expression DoResolve (ResolveContext rc)
7027                 {
7028                         ResolveConditionalAccessReceiver (rc);
7029                         return DoResolveInvocation (rc);
7030                 }
7031
7032                 Expression DoResolveInvocation (ResolveContext ec)
7033                 {
7034                         Expression member_expr;
7035                         var atn = expr as ATypeNameExpression;
7036
7037                         var flags = default (ResolveContext.FlagsHandle);
7038                         if (conditional_access_receiver)
7039                                 flags = ec.Set (ResolveContext.Options.DontSetConditionalAccessReceiver);
7040
7041                         if (atn != null) {
7042                                 member_expr = atn.LookupNameExpression (ec, MemberLookupRestrictions.InvocableOnly | MemberLookupRestrictions.ReadAccess);
7043                                 if (member_expr != null) {
7044                                         var name_of = member_expr as NameOf;
7045                                         if (name_of != null) {
7046                                                 return name_of.ResolveOverload (ec, arguments);
7047                                         }
7048
7049                                         member_expr = member_expr.Resolve (ec);
7050                                 }
7051                         } else {
7052                                 member_expr = expr.Resolve (ec);
7053                         }
7054
7055                         if (conditional_access_receiver)
7056                                 flags.Dispose ();
7057
7058                         if (member_expr == null)
7059                                 return null;
7060
7061                         //
7062                         // Next, evaluate all the expressions in the argument list
7063                         //
7064                         bool dynamic_arg = false;
7065                         if (arguments != null) {
7066                                 using (ec.With (ResolveContext.Options.DontSetConditionalAccessReceiver, false)) {
7067                                         arguments.Resolve (ec, out dynamic_arg);
7068                                 }
7069                         }
7070
7071                         TypeSpec expr_type = member_expr.Type;
7072                         if (expr_type.BuiltinType == BuiltinTypeSpec.Type.Dynamic)
7073                                 return DoResolveDynamic (ec, member_expr);
7074
7075                         mg = member_expr as MethodGroupExpr;
7076                         Expression invoke = null;
7077
7078                         if (mg == null) {
7079                                 if (expr_type != null && expr_type.IsDelegate) {
7080                                         invoke = new DelegateInvocation (member_expr, arguments, conditional_access_receiver, loc);
7081                                         invoke = invoke.Resolve (ec);
7082                                         if (invoke == null || !dynamic_arg)
7083                                                 return invoke;
7084                                 } else {
7085                                         if (member_expr is RuntimeValueExpression) {
7086                                                 ec.Report.Error (Report.RuntimeErrorId, loc, "Cannot invoke a non-delegate type `{0}'",
7087                                                         member_expr.Type.GetSignatureForError ());
7088                                                 return null;
7089                                         }
7090
7091                                         MemberExpr me = member_expr as MemberExpr;
7092                                         if (me == null) {
7093                                                 member_expr.Error_UnexpectedKind (ec, ResolveFlags.MethodGroup, loc);
7094                                                 return null;
7095                                         }
7096
7097                                         ec.Report.Error (1955, loc, "The member `{0}' cannot be used as method or delegate",
7098                                                         member_expr.GetSignatureForError ());
7099                                         return null;
7100                                 }
7101                         }
7102
7103                         if (invoke == null) {
7104                                 mg = DoResolveOverload (ec);
7105                                 if (mg == null)
7106                                         return null;
7107                         }
7108
7109                         if (dynamic_arg)
7110                                 return DoResolveDynamic (ec, member_expr);
7111
7112                         var method = mg.BestCandidate;
7113                         type = mg.BestCandidateReturnType;
7114                         if (conditional_access_receiver)
7115                                 type = LiftMemberType (ec, type);
7116
7117                         if (arguments == null && method.DeclaringType.BuiltinType == BuiltinTypeSpec.Type.Object && method.Name == Destructor.MetadataName) {
7118                                 if (mg.IsBase)
7119                                         ec.Report.Error (250, loc, "Do not directly call your base class Finalize method. It is called automatically from your destructor");
7120                                 else
7121                                         ec.Report.Error (245, loc, "Destructors and object.Finalize cannot be called directly. Consider calling IDisposable.Dispose if available");
7122                                 return null;
7123                         }
7124
7125                         IsSpecialMethodInvocation (ec, method, loc);
7126                         
7127                         eclass = ExprClass.Value;
7128                         return this;
7129                 }
7130
7131                 protected virtual Expression DoResolveDynamic (ResolveContext ec, Expression memberExpr)
7132                 {
7133                         Arguments args;
7134                         DynamicMemberBinder dmb = memberExpr as DynamicMemberBinder;
7135                         if (dmb != null) {
7136                                 args = dmb.Arguments;
7137                                 if (arguments != null)
7138                                         args.AddRange (arguments);
7139                         } else if (mg == null) {
7140                                 if (arguments == null)
7141                                         args = new Arguments (1);
7142                                 else
7143                                         args = arguments;
7144
7145                                 args.Insert (0, new Argument (memberExpr));
7146                                 this.expr = null;
7147                         } else {
7148                                 if (mg.IsBase) {
7149                                         ec.Report.Error (1971, loc,
7150                                                 "The base call to method `{0}' cannot be dynamically dispatched. Consider casting the dynamic arguments or eliminating the base access",
7151                                                 mg.Name);
7152                                         return null;
7153                                 }
7154
7155                                 if (arguments == null)
7156                                         args = new Arguments (1);
7157                                 else
7158                                         args = arguments;
7159
7160                                 MemberAccess ma = expr as MemberAccess;
7161                                 if (ma != null) {
7162                                         var inst = mg.InstanceExpression;
7163                                         var left_type = inst as TypeExpr;
7164                                         if (left_type != null) {
7165                                                 args.Insert (0, new Argument (new TypeOf (left_type.Type, loc).Resolve (ec), Argument.AType.DynamicTypeName));
7166                                         } else if (inst != null) {
7167                                                 //
7168                                                 // Any value type has to be pass as by-ref to get back the same
7169                                                 // instance on which the member was called
7170                                                 //
7171                                                 var mod = inst is IMemoryLocation && TypeSpec.IsValueType (inst.Type) ?
7172                                                         Argument.AType.Ref : Argument.AType.None;
7173                                                 args.Insert (0, new Argument (inst.Resolve (ec), mod));
7174                                         }
7175                                 } else {        // is SimpleName
7176                                         if (ec.IsStatic) {
7177                                                 args.Insert (0, new Argument (new TypeOf (ec.CurrentType, loc).Resolve (ec), Argument.AType.DynamicTypeName));
7178                                         } else {
7179                                                 args.Insert (0, new Argument (new This (loc).Resolve (ec)));
7180                                         }
7181                                 }
7182                         }
7183
7184                         return new DynamicInvocation (expr as ATypeNameExpression, args, conditional_access_receiver, loc).Resolve (ec);
7185                 }
7186
7187                 protected virtual MethodGroupExpr DoResolveOverload (ResolveContext ec)
7188                 {
7189                         return mg.OverloadResolve (ec, ref arguments, null, OverloadResolver.Restrictions.None);
7190                 }
7191
7192                 public override void FlowAnalysis (FlowAnalysisContext fc)
7193                 {
7194                         if (mg.IsConditionallyExcluded)
7195                                 return;
7196
7197                         var da = conditional_access_receiver ? fc.BranchDefiniteAssignment () : null;
7198
7199                         mg.FlowAnalysis (fc);
7200
7201                         if (arguments != null)
7202                                 arguments.FlowAnalysis (fc);
7203
7204                         if (conditional_access_receiver)
7205                                 fc.DefiniteAssignment = da;
7206                 }
7207
7208                 public override string GetSignatureForError ()
7209                 {
7210                         return mg.GetSignatureForError ();
7211                 }
7212
7213                 public override bool HasConditionalAccess ()
7214                 {
7215                         return expr.HasConditionalAccess ();
7216                 }
7217
7218                 //
7219                 // If a member is a method or event, or if it is a constant, field or property of either a delegate type
7220                 // or the type dynamic, then the member is invocable
7221                 //
7222                 public static bool IsMemberInvocable (MemberSpec member)
7223                 {
7224                         switch (member.Kind) {
7225                         case MemberKind.Event:
7226                                 return true;
7227                         case MemberKind.Field:
7228                         case MemberKind.Property:
7229                                 var m = member as IInterfaceMemberSpec;
7230                                 return m.MemberType.IsDelegate || m.MemberType.BuiltinType == BuiltinTypeSpec.Type.Dynamic;
7231                         default:
7232                                 return false;
7233                         }
7234                 }
7235
7236                 public static bool IsSpecialMethodInvocation (ResolveContext ec, MethodSpec method, Location loc)
7237                 {
7238                         if (!method.IsReservedMethod)
7239                                 return false;
7240
7241                         if (ec.HasSet (ResolveContext.Options.InvokeSpecialName) || ec.CurrentMemberDefinition.IsCompilerGenerated)
7242                                 return false;
7243
7244                         ec.Report.SymbolRelatedToPreviousError (method);
7245                         ec.Report.Error (571, loc, "`{0}': cannot explicitly call operator or accessor",
7246                                 method.GetSignatureForError ());
7247         
7248                         return true;
7249                 }
7250
7251                 public override void Emit (EmitContext ec)
7252                 {
7253                         if (mg.IsConditionallyExcluded)
7254                                 return;
7255
7256                         if (conditional_access_receiver)
7257                                 mg.EmitCall (ec, arguments, type, false);
7258                         else
7259                                 mg.EmitCall (ec, arguments, false);
7260                 }
7261                 
7262                 public override void EmitStatement (EmitContext ec)
7263                 {
7264                         if (mg.IsConditionallyExcluded)
7265                                 return;
7266
7267                         if (conditional_access_receiver)
7268                                 mg.EmitCall (ec, arguments, type, true);
7269                         else
7270                                 mg.EmitCall (ec, arguments, true);
7271                 }
7272
7273                 public override SLE.Expression MakeExpression (BuilderContext ctx)
7274                 {
7275                         return MakeExpression (ctx, mg.InstanceExpression, mg.BestCandidate, arguments);
7276                 }
7277
7278                 public static SLE.Expression MakeExpression (BuilderContext ctx, Expression instance, MethodSpec mi, Arguments args)
7279                 {
7280 #if STATIC
7281                         throw new NotSupportedException ();
7282 #else
7283                         var instance_expr = instance == null ? null : instance.MakeExpression (ctx);
7284                         return SLE.Expression.Call (instance_expr, (MethodInfo) mi.GetMetaInfo (), Arguments.MakeExpression (args, ctx));
7285 #endif
7286                 }
7287
7288                 public override object Accept (StructuralVisitor visitor)
7289                 {
7290                         return visitor.Visit (this);
7291                 }
7292         }
7293
7294         //
7295         // Implements simple new expression 
7296         //
7297         public class New : ExpressionStatement, IMemoryLocation
7298         {
7299                 protected Arguments arguments;
7300
7301                 //
7302                 // During bootstrap, it contains the RequestedType,
7303                 // but if `type' is not null, it *might* contain a NewDelegate
7304                 // (because of field multi-initialization)
7305                 //
7306                 protected Expression RequestedType;
7307
7308                 protected MethodSpec method;
7309
7310                 public New (Expression requested_type, Arguments arguments, Location l)
7311                 {
7312                         RequestedType = requested_type;
7313                         this.arguments = arguments;
7314                         loc = l;
7315                 }
7316
7317                 #region Properties
7318                 public Arguments Arguments {
7319                         get {
7320                                 return arguments;
7321                         }
7322                 }
7323
7324                 //
7325                 // Returns true for resolved `new S()' when S does not declare parameterless constructor
7326                 //
7327                 public bool IsGeneratedStructConstructor {
7328                         get {
7329                                 return arguments == null && method == null && type.IsStruct && GetType () == typeof (New);
7330                         }
7331                 }
7332
7333                 public Expression TypeExpression {
7334                         get {
7335                                 return RequestedType;
7336                         }
7337                 }
7338
7339                 #endregion
7340
7341                 /// <summary>
7342                 /// Converts complex core type syntax like 'new int ()' to simple constant
7343                 /// </summary>
7344                 public static Constant Constantify (TypeSpec t, Location loc)
7345                 {
7346                         switch (t.BuiltinType) {
7347                         case BuiltinTypeSpec.Type.Int:
7348                                 return new IntConstant (t, 0, loc);
7349                         case BuiltinTypeSpec.Type.UInt:
7350                                 return new UIntConstant (t, 0, loc);
7351                         case BuiltinTypeSpec.Type.Long:
7352                                 return new LongConstant (t, 0, loc);
7353                         case BuiltinTypeSpec.Type.ULong:
7354                                 return new ULongConstant (t, 0, loc);
7355                         case BuiltinTypeSpec.Type.Float:
7356                                 return new FloatConstant (t, 0, loc);
7357                         case BuiltinTypeSpec.Type.Double:
7358                                 return new DoubleConstant (t, 0, loc);
7359                         case BuiltinTypeSpec.Type.Short:
7360                                 return new ShortConstant (t, 0, loc);
7361                         case BuiltinTypeSpec.Type.UShort:
7362                                 return new UShortConstant (t, 0, loc);
7363                         case BuiltinTypeSpec.Type.SByte:
7364                                 return new SByteConstant (t, 0, loc);
7365                         case BuiltinTypeSpec.Type.Byte:
7366                                 return new ByteConstant (t, 0, loc);
7367                         case BuiltinTypeSpec.Type.Char:
7368                                 return new CharConstant (t, '\0', loc);
7369                         case BuiltinTypeSpec.Type.Bool:
7370                                 return new BoolConstant (t, false, loc);
7371                         case BuiltinTypeSpec.Type.Decimal:
7372                                 return new DecimalConstant (t, 0, loc);
7373                         }
7374
7375                         if (t.IsEnum)
7376                                 return new EnumConstant (Constantify (EnumSpec.GetUnderlyingType (t), loc), t);
7377
7378                         if (t.IsNullableType)
7379                                 return Nullable.LiftedNull.Create (t, loc);
7380
7381                         return null;
7382                 }
7383
7384                 public override bool ContainsEmitWithAwait ()
7385                 {
7386                         return arguments != null && arguments.ContainsEmitWithAwait ();
7387                 }
7388
7389                 //
7390                 // Checks whether the type is an interface that has the
7391                 // [ComImport, CoClass] attributes and must be treated
7392                 // specially
7393                 //
7394                 public Expression CheckComImport (ResolveContext ec)
7395                 {
7396                         if (!type.IsInterface)
7397                                 return null;
7398
7399                         //
7400                         // Turn the call into:
7401                         // (the-interface-stated) (new class-referenced-in-coclassattribute ())
7402                         //
7403                         var real_class = type.MemberDefinition.GetAttributeCoClass ();
7404                         if (real_class == null)
7405                                 return null;
7406
7407                         New proxy = new New (new TypeExpression (real_class, loc), arguments, loc);
7408                         Cast cast = new Cast (new TypeExpression (type, loc), proxy, loc);
7409                         return cast.Resolve (ec);
7410                 }
7411
7412                 public override Expression CreateExpressionTree (ResolveContext ec)
7413                 {
7414                         Arguments args;
7415                         if (method == null) {
7416                                 args = new Arguments (1);
7417                                 args.Add (new Argument (new TypeOf (type, loc)));
7418                         } else {
7419                                 args = Arguments.CreateForExpressionTree (ec,
7420                                         arguments, new TypeOfMethod (method, loc));
7421                         }
7422
7423                         return CreateExpressionFactoryCall (ec, "New", args);
7424                 }
7425                 
7426                 protected override Expression DoResolve (ResolveContext ec)
7427                 {
7428                         type = RequestedType.ResolveAsType (ec);
7429                         if (type == null)
7430                                 return null;
7431
7432                         eclass = ExprClass.Value;
7433
7434                         if (type.IsPointer) {
7435                                 ec.Report.Error (1919, loc, "Unsafe type `{0}' cannot be used in an object creation expression",
7436                                         type.GetSignatureForError ());
7437                                 return null;
7438                         }
7439
7440                         if (arguments == null) {
7441                                 Constant c = Constantify (type, RequestedType.Location);
7442                                 if (c != null)
7443                                         return ReducedExpression.Create (c, this);
7444                         }
7445
7446                         if (type.IsDelegate) {
7447                                 return (new NewDelegate (type, arguments, loc)).Resolve (ec);
7448                         }
7449
7450                         var tparam = type as TypeParameterSpec;
7451                         if (tparam != null) {
7452                                 //
7453                                 // Check whether the type of type parameter can be constructed. BaseType can be a struct for method overrides
7454                                 // where type parameter constraint is inflated to struct
7455                                 //
7456                                 if ((tparam.SpecialConstraint & (SpecialConstraint.Struct | SpecialConstraint.Constructor)) == 0 && !TypeSpec.IsValueType (tparam)) {
7457                                         ec.Report.Error (304, loc,
7458                                                 "Cannot create an instance of the variable type `{0}' because it does not have the new() constraint",
7459                                                 type.GetSignatureForError ());
7460                                 }
7461
7462                                 if ((arguments != null) && (arguments.Count != 0)) {
7463                                         ec.Report.Error (417, loc,
7464                                                 "`{0}': cannot provide arguments when creating an instance of a variable type",
7465                                                 type.GetSignatureForError ());
7466                                 }
7467
7468                                 return this;
7469                         }
7470
7471                         if (type.IsStatic) {
7472                                 ec.Report.SymbolRelatedToPreviousError (type);
7473                                 ec.Report.Error (712, loc, "Cannot create an instance of the static class `{0}'", type.GetSignatureForError ());
7474                                 return null;
7475                         }
7476
7477                         if (type.IsInterface || type.IsAbstract){
7478                                 if (!TypeManager.IsGenericType (type)) {
7479                                         RequestedType = CheckComImport (ec);
7480                                         if (RequestedType != null)
7481                                                 return RequestedType;
7482                                 }
7483                                 
7484                                 ec.Report.SymbolRelatedToPreviousError (type);
7485                                 ec.Report.Error (144, loc, "Cannot create an instance of the abstract class or interface `{0}'", type.GetSignatureForError ());
7486                                 return null;
7487                         }
7488
7489                         bool dynamic;
7490                         if (arguments != null) {
7491                                 arguments.Resolve (ec, out dynamic);
7492                         } else {
7493                                 dynamic = false;
7494                         }
7495
7496                         method = ConstructorLookup (ec, type, ref arguments, loc);
7497
7498                         if (dynamic) {
7499                                 arguments.Insert (0, new Argument (new TypeOf (type, loc).Resolve (ec), Argument.AType.DynamicTypeName));
7500                                 return new DynamicConstructorBinder (type, arguments, loc).Resolve (ec);
7501                         }
7502
7503                         return this;
7504                 }
7505
7506                 void DoEmitTypeParameter (EmitContext ec)
7507                 {
7508                         var m = ec.Module.PredefinedMembers.ActivatorCreateInstance.Resolve (loc);
7509                         if (m == null)
7510                                 return;
7511
7512                         var ctor_factory = m.MakeGenericMethod (ec.MemberContext, type);
7513                         ec.Emit (OpCodes.Call, ctor_factory);
7514                 }
7515
7516                 //
7517                 // This Emit can be invoked in two contexts:
7518                 //    * As a mechanism that will leave a value on the stack (new object)
7519                 //    * As one that wont (init struct)
7520                 //
7521                 // If we are dealing with a ValueType, we have a few
7522                 // situations to deal with:
7523                 //
7524                 //    * The target is a ValueType, and we have been provided
7525                 //      the instance (this is easy, we are being assigned).
7526                 //
7527                 //    * The target of New is being passed as an argument,
7528                 //      to a boxing operation or a function that takes a
7529                 //      ValueType.
7530                 //
7531                 //      In this case, we need to create a temporary variable
7532                 //      that is the argument of New.
7533                 //
7534                 // Returns whether a value is left on the stack
7535                 //
7536                 // *** Implementation note ***
7537                 //
7538                 // To benefit from this optimization, each assignable expression
7539                 // has to manually cast to New and call this Emit.
7540                 //
7541                 // TODO: It's worth to implement it for arrays and fields
7542                 //
7543                 public virtual bool Emit (EmitContext ec, IMemoryLocation target)
7544                 {
7545                         bool is_value_type = type.IsStructOrEnum;
7546                         VariableReference vr = target as VariableReference;
7547
7548                         if (target != null && is_value_type && (vr != null || method == null)) {
7549                                 target.AddressOf (ec, AddressOp.Store);
7550                         } else if (vr != null && vr.IsRef) {
7551                                 vr.EmitLoad (ec);
7552                         }
7553
7554                         if (arguments != null) {
7555                                 if (ec.HasSet (BuilderContext.Options.AsyncBody) && (arguments.Count > (this is NewInitialize ? 0 : 1)) && arguments.ContainsEmitWithAwait ())
7556                                         arguments = arguments.Emit (ec, false, true);
7557
7558                                 arguments.Emit (ec);
7559                         }
7560
7561                         if (is_value_type) {
7562                                 if (method == null) {
7563                                         ec.Emit (OpCodes.Initobj, type);
7564                                         return false;
7565                                 }
7566
7567                                 if (vr != null) {
7568                                         ec.MarkCallEntry (loc);
7569                                         ec.Emit (OpCodes.Call, method);
7570                                         return false;
7571                                 }
7572                         }
7573                         
7574                         if (type is TypeParameterSpec) {
7575                                 DoEmitTypeParameter (ec);
7576                                 return true;
7577                         }
7578
7579                         ec.MarkCallEntry (loc);
7580                         ec.Emit (OpCodes.Newobj, method);
7581                         return true;
7582                 }
7583
7584                 public override void Emit (EmitContext ec)
7585                 {
7586                         LocalTemporary v = null;
7587                         if (method == null && type.IsStructOrEnum) {
7588                                 // TODO: Use temporary variable from pool
7589                                 v = new LocalTemporary (type);
7590                         }
7591
7592                         if (!Emit (ec, v))
7593                                 v.Emit (ec);
7594                 }
7595
7596                 public override void EmitStatement (EmitContext ec)
7597                 {
7598                         LocalTemporary v = null;
7599                         if (method == null && TypeSpec.IsValueType (type)) {
7600                                 // TODO: Use temporary variable from pool
7601                                 v = new LocalTemporary (type);
7602                         }
7603
7604                         if (Emit (ec, v))
7605                                 ec.Emit (OpCodes.Pop);
7606                 }
7607
7608                 public override void FlowAnalysis (FlowAnalysisContext fc)
7609                 {
7610                         if (arguments != null)
7611                                 arguments.FlowAnalysis (fc);
7612                 }
7613
7614                 public void AddressOf (EmitContext ec, AddressOp mode)
7615                 {
7616                         EmitAddressOf (ec, mode);
7617                 }
7618
7619                 protected virtual IMemoryLocation EmitAddressOf (EmitContext ec, AddressOp mode)
7620                 {
7621                         LocalTemporary value_target = new LocalTemporary (type);
7622
7623                         if (type is TypeParameterSpec) {
7624                                 DoEmitTypeParameter (ec);
7625                                 value_target.Store (ec);
7626                                 value_target.AddressOf (ec, mode);
7627                                 return value_target;
7628                         }
7629
7630                         value_target.AddressOf (ec, AddressOp.Store);
7631
7632                         if (method == null) {
7633                                 ec.Emit (OpCodes.Initobj, type);
7634                         } else {
7635                                 if (arguments != null)
7636                                         arguments.Emit (ec);
7637
7638                                 ec.Emit (OpCodes.Call, method);
7639                         }
7640                         
7641                         value_target.AddressOf (ec, mode);
7642                         return value_target;
7643                 }
7644
7645                 protected override void CloneTo (CloneContext clonectx, Expression t)
7646                 {
7647                         New target = (New) t;
7648
7649                         target.RequestedType = RequestedType.Clone (clonectx);
7650                         if (arguments != null){
7651                                 target.arguments = arguments.Clone (clonectx);
7652                         }
7653                 }
7654
7655                 public override SLE.Expression MakeExpression (BuilderContext ctx)
7656                 {
7657 #if STATIC
7658                         return base.MakeExpression (ctx);
7659 #else
7660                         return SLE.Expression.New ((ConstructorInfo) method.GetMetaInfo (), Arguments.MakeExpression (arguments, ctx));
7661 #endif
7662                 }
7663                 
7664                 public override object Accept (StructuralVisitor visitor)
7665                 {
7666                         return visitor.Visit (this);
7667                 }
7668         }
7669
7670         //
7671         // Array initializer expression, the expression is allowed in
7672         // variable or field initialization only which makes it tricky as
7673         // the type has to be infered based on the context either from field
7674         // type or variable type (think of multiple declarators)
7675         //
7676         public class ArrayInitializer : Expression
7677         {
7678                 List<Expression> elements;
7679                 BlockVariable variable;
7680
7681                 public ArrayInitializer (List<Expression> init, Location loc)
7682                 {
7683                         elements = init;
7684                         this.loc = loc;
7685                 }
7686
7687                 public ArrayInitializer (int count, Location loc)
7688                         : this (new List<Expression> (count), loc)
7689                 {
7690                 }
7691
7692                 public ArrayInitializer (Location loc)
7693                         : this (4, loc)
7694                 {
7695                 }
7696
7697                 #region Properties
7698
7699                 public int Count {
7700                         get { return elements.Count; }
7701                 }
7702
7703                 public List<Expression> Elements {
7704                         get {
7705                                 return elements;
7706                         }
7707                 }
7708
7709                 public Expression this [int index] {
7710                         get {
7711                                 return elements [index];
7712                         }
7713                 }
7714
7715                 public BlockVariable VariableDeclaration {
7716                         get {
7717                                 return variable;
7718                         }
7719                         set {
7720                                 variable = value;
7721                         }
7722                 }
7723
7724                 #endregion
7725
7726                 public void Add (Expression expr)
7727                 {
7728                         elements.Add (expr);
7729                 }
7730
7731                 public override bool ContainsEmitWithAwait ()
7732                 {
7733                         throw new NotSupportedException ();
7734                 }
7735
7736                 public override Expression CreateExpressionTree (ResolveContext ec)
7737                 {
7738                         throw new NotSupportedException ("ET");
7739                 }
7740
7741                 protected override void CloneTo (CloneContext clonectx, Expression t)
7742                 {
7743                         var target = (ArrayInitializer) t;
7744
7745                         target.elements = new List<Expression> (elements.Count);
7746                         foreach (var element in elements)
7747                                 target.elements.Add (element.Clone (clonectx));
7748                 }
7749
7750                 protected override Expression DoResolve (ResolveContext rc)
7751                 {
7752                         var current_field = rc.CurrentMemberDefinition as FieldBase;
7753                         TypeExpression type;
7754                         if (current_field != null && rc.CurrentAnonymousMethod == null) {
7755                                 type = new TypeExpression (current_field.MemberType, current_field.Location);
7756                         } else if (variable != null) {
7757                                 if (variable.TypeExpression is VarExpr) {
7758                                         rc.Report.Error (820, loc, "An implicitly typed local variable declarator cannot use an array initializer");
7759                                         return EmptyExpression.Null;
7760                                 }
7761
7762                                 type = new TypeExpression (variable.Variable.Type, variable.Variable.Location);
7763                         } else {
7764                                 throw new NotImplementedException ("Unexpected array initializer context");
7765                         }
7766
7767                         return new ArrayCreation (type, this).Resolve (rc);
7768                 }
7769
7770                 public override void Emit (EmitContext ec)
7771                 {
7772                         throw new InternalErrorException ("Missing Resolve call");
7773                 }
7774
7775                 public override void FlowAnalysis (FlowAnalysisContext fc)
7776                 {
7777                         throw new InternalErrorException ("Missing Resolve call");
7778                 }
7779                 
7780                 public override object Accept (StructuralVisitor visitor)
7781                 {
7782                         return visitor.Visit (this);
7783                 }
7784         }
7785
7786         /// <summary>
7787         ///   14.5.10.2: Represents an array creation expression.
7788         /// </summary>
7789         ///
7790         /// <remarks>
7791         ///   There are two possible scenarios here: one is an array creation
7792         ///   expression that specifies the dimensions and optionally the
7793         ///   initialization data and the other which does not need dimensions
7794         ///   specified but where initialization data is mandatory.
7795         /// </remarks>
7796         public class ArrayCreation : Expression
7797         {
7798                 FullNamedExpression requested_base_type;
7799                 ArrayInitializer initializers;
7800
7801                 //
7802                 // The list of Argument types.
7803                 // This is used to construct the `newarray' or constructor signature
7804                 //
7805                 protected List<Expression> arguments;
7806                 
7807                 protected TypeSpec array_element_type;
7808                 int num_arguments;
7809                 protected int dimensions;
7810                 protected readonly ComposedTypeSpecifier rank;
7811                 Expression first_emit;
7812                 LocalTemporary first_emit_temp;
7813
7814                 protected List<Expression> array_data;
7815
7816                 Dictionary<int, int> bounds;
7817
7818 #if STATIC
7819                 // The number of constants in array initializers
7820                 int const_initializers_count;
7821                 bool only_constant_initializers;
7822 #endif
7823                 public ArrayCreation (FullNamedExpression requested_base_type, List<Expression> exprs, ComposedTypeSpecifier rank, ArrayInitializer initializers, Location l)
7824                         : this (requested_base_type, rank, initializers, l)
7825                 {
7826                         arguments = new List<Expression> (exprs);
7827                         num_arguments = arguments.Count;
7828                 }
7829
7830                 //
7831                 // For expressions like int[] foo = new int[] { 1, 2, 3 };
7832                 //
7833                 public ArrayCreation (FullNamedExpression requested_base_type, ComposedTypeSpecifier rank, ArrayInitializer initializers, Location loc)
7834                 {
7835                         this.requested_base_type = requested_base_type;
7836                         this.rank = rank;
7837                         this.initializers = initializers;
7838                         this.loc = loc;
7839
7840                         if (rank != null)
7841                                 num_arguments = rank.Dimension;
7842                 }
7843
7844                 //
7845                 // For compiler generated single dimensional arrays only
7846                 //
7847                 public ArrayCreation (FullNamedExpression requested_base_type, ArrayInitializer initializers, Location loc)
7848                         : this (requested_base_type, ComposedTypeSpecifier.SingleDimension, initializers, loc)
7849                 {
7850                 }
7851
7852                 //
7853                 // For expressions like int[] foo = { 1, 2, 3 };
7854                 //
7855                 public ArrayCreation (FullNamedExpression requested_base_type, ArrayInitializer initializers)
7856                         : this (requested_base_type, null, initializers, initializers.Location)
7857                 {
7858                 }
7859
7860                 public ComposedTypeSpecifier Rank {
7861                         get {
7862                                 return this.rank;
7863                         }
7864                 }
7865                 
7866                 public FullNamedExpression TypeExpression {
7867                         get {
7868                                 return this.requested_base_type;
7869                         }
7870                 }
7871                 
7872                 public ArrayInitializer Initializers {
7873                         get {
7874                                 return this.initializers;
7875                         }
7876                 }
7877
7878                 bool CheckIndices (ResolveContext ec, ArrayInitializer probe, int idx, bool specified_dims, int child_bounds)
7879                 {
7880                         if (initializers != null && bounds == null) {
7881                                 //
7882                                 // We use this to store all the data values in the order in which we
7883                                 // will need to store them in the byte blob later
7884                                 //
7885                                 array_data = new List<Expression> (probe.Count);
7886                                 bounds = new Dictionary<int, int> ();
7887                         }
7888
7889                         if (specified_dims) { 
7890                                 Expression a = arguments [idx];
7891                                 a = a.Resolve (ec);
7892                                 if (a == null)
7893                                         return false;
7894
7895                                 a = ConvertExpressionToArrayIndex (ec, a);
7896                                 if (a == null)
7897                                         return false;
7898
7899                                 arguments[idx] = a;
7900
7901                                 if (initializers != null) {
7902                                         Constant c = a as Constant;
7903                                         if (c == null && a is ArrayIndexCast)
7904                                                 c = ((ArrayIndexCast) a).Child as Constant;
7905
7906                                         if (c == null) {
7907                                                 ec.Report.Error (150, a.Location, "A constant value is expected");
7908                                                 return false;
7909                                         }
7910
7911                                         int value;
7912                                         try {
7913                                                 value = System.Convert.ToInt32 (c.GetValue ());
7914                                         } catch {
7915                                                 ec.Report.Error (150, a.Location, "A constant value is expected");
7916                                                 return false;
7917                                         }
7918
7919                                         // TODO: probe.Count does not fit ulong in
7920                                         if (value != probe.Count) {
7921                                                 ec.Report.Error (847, loc, "An array initializer of length `{0}' was expected", value.ToString ());
7922                                                 return false;
7923                                         }
7924
7925                                         bounds[idx] = value;
7926                                 }
7927                         }
7928
7929                         if (initializers == null)
7930                                 return true;
7931
7932                         for (int i = 0; i < probe.Count; ++i) {
7933                                 var o = probe [i];
7934                                 if (o is ArrayInitializer) {
7935                                         var sub_probe = o as ArrayInitializer;
7936                                         if (idx + 1 >= dimensions){
7937                                                 ec.Report.Error (623, loc, "Array initializers can only be used in a variable or field initializer. Try using a new expression instead");
7938                                                 return false;
7939                                         }
7940
7941                                         // When we don't have explicitly specified dimensions, record whatever dimension we first encounter at each level
7942                                         if (!bounds.ContainsKey(idx + 1))
7943                                                 bounds[idx + 1] = sub_probe.Count;
7944
7945                                         if (bounds[idx + 1] != sub_probe.Count) {
7946                                                 ec.Report.Error(847, sub_probe.Location, "An array initializer of length `{0}' was expected", bounds[idx + 1].ToString());
7947                                                 return false;
7948                                         }
7949
7950                                         bool ret = CheckIndices (ec, sub_probe, idx + 1, specified_dims, child_bounds - 1);
7951                                         if (!ret)
7952                                                 return false;
7953                                 } else if (child_bounds > 1) {
7954                                         ec.Report.Error (846, o.Location, "A nested array initializer was expected");
7955                                 } else {
7956                                         Expression element = ResolveArrayElement (ec, o);
7957                                         if (element == null)
7958                                                 continue;
7959 #if STATIC
7960                                         // Initializers with the default values can be ignored
7961                                         Constant c = element as Constant;
7962                                         if (c != null) {
7963                                                 if (!c.IsDefaultInitializer (array_element_type)) {
7964                                                         ++const_initializers_count;
7965                                                 }
7966                                         } else {
7967                                                 only_constant_initializers = false;
7968                                         }
7969 #endif                                  
7970                                         array_data.Add (element);
7971                                 }
7972                         }
7973
7974                         return true;
7975                 }
7976
7977                 public override bool ContainsEmitWithAwait ()
7978                 {
7979                         foreach (var arg in arguments) {
7980                                 if (arg.ContainsEmitWithAwait ())
7981                                         return true;
7982                         }
7983
7984                         return InitializersContainAwait ();
7985                 }
7986
7987                 public override Expression CreateExpressionTree (ResolveContext ec)
7988                 {
7989                         Arguments args;
7990
7991                         if (array_data == null) {
7992                                 args = new Arguments (arguments.Count + 1);
7993                                 args.Add (new Argument (new TypeOf (array_element_type, loc)));
7994                                 foreach (Expression a in arguments)
7995                                         args.Add (new Argument (a.CreateExpressionTree (ec)));
7996
7997                                 return CreateExpressionFactoryCall (ec, "NewArrayBounds", args);
7998                         }
7999
8000                         if (dimensions > 1) {
8001                                 ec.Report.Error (838, loc, "An expression tree cannot contain a multidimensional array initializer");
8002                                 return null;
8003                         }
8004
8005                         args = new Arguments (array_data == null ? 1 : array_data.Count + 1);
8006                         args.Add (new Argument (new TypeOf (array_element_type, loc)));
8007                         if (array_data != null) {
8008                                 for (int i = 0; i < array_data.Count; ++i) {
8009                                         Expression e = array_data [i];
8010                                         args.Add (new Argument (e.CreateExpressionTree (ec)));
8011                                 }
8012                         }
8013
8014                         return CreateExpressionFactoryCall (ec, "NewArrayInit", args);
8015                 }               
8016                 
8017                 void UpdateIndices (ResolveContext rc)
8018                 {
8019                         int i = 0;
8020                         for (var probe = initializers; probe != null;) {
8021                                 Expression e = new IntConstant (rc.BuiltinTypes, probe.Count, Location.Null);
8022                                 arguments.Add (e);
8023                                 bounds[i++] = probe.Count;
8024
8025                                 if (probe.Count > 0 && probe [0] is ArrayInitializer) {
8026                                         probe = (ArrayInitializer) probe[0];
8027                                 } else if (dimensions > i) {
8028                                         continue;
8029                                 } else {
8030                                         return;
8031                                 }
8032                         }
8033                 }
8034
8035                 protected override void Error_NegativeArrayIndex (ResolveContext ec, Location loc)
8036                 {
8037                         ec.Report.Error (248, loc, "Cannot create an array with a negative size");
8038                 }
8039
8040                 public override void FlowAnalysis (FlowAnalysisContext fc)
8041                 {
8042                         foreach (var arg in arguments)
8043                                 arg.FlowAnalysis (fc);
8044
8045                         if (array_data != null) {
8046                                 foreach (var ad in array_data)
8047                                         ad.FlowAnalysis (fc);
8048                         }
8049                 }
8050
8051                 bool InitializersContainAwait ()
8052                 {
8053                         if (array_data == null)
8054                                 return false;
8055
8056                         foreach (var expr in array_data) {
8057                                 if (expr.ContainsEmitWithAwait ())
8058                                         return true;
8059                         }
8060
8061                         return false;
8062                 }
8063
8064                 protected virtual Expression ResolveArrayElement (ResolveContext ec, Expression element)
8065                 {
8066                         element = element.Resolve (ec);
8067                         if (element == null)
8068                                 return null;
8069
8070                         if (element is CompoundAssign.TargetExpression) {
8071                                 if (first_emit != null)
8072                                         throw new InternalErrorException ("Can only handle one mutator at a time");
8073                                 first_emit = element;
8074                                 element = first_emit_temp = new LocalTemporary (element.Type);
8075                         }
8076
8077                         return Convert.ImplicitConversionRequired (
8078                                 ec, element, array_element_type, loc);
8079                 }
8080
8081                 protected bool ResolveInitializers (ResolveContext ec)
8082                 {
8083 #if STATIC
8084                         only_constant_initializers = true;
8085 #endif
8086
8087                         if (arguments != null) {
8088                                 bool res = true;
8089                                 for (int i = 0; i < arguments.Count; ++i) {
8090                                         res &= CheckIndices (ec, initializers, i, true, dimensions);
8091                                         if (initializers != null)
8092                                                 break;
8093                                 }
8094
8095                                 return res;
8096                         }
8097
8098                         arguments = new List<Expression> ();
8099
8100                         if (!CheckIndices (ec, initializers, 0, false, dimensions))
8101                                 return false;
8102                                 
8103                         UpdateIndices (ec);
8104                                 
8105                         return true;
8106                 }
8107
8108                 //
8109                 // Resolved the type of the array
8110                 //
8111                 bool ResolveArrayType (ResolveContext ec)
8112                 {
8113                         //
8114                         // Lookup the type
8115                         //
8116                         FullNamedExpression array_type_expr;
8117                         if (num_arguments > 0) {
8118                                 array_type_expr = new ComposedCast (requested_base_type, rank);
8119                         } else {
8120                                 array_type_expr = requested_base_type;
8121                         }
8122
8123                         type = array_type_expr.ResolveAsType (ec);
8124                         if (array_type_expr == null)
8125                                 return false;
8126
8127                         var ac = type as ArrayContainer;
8128                         if (ac == null) {
8129                                 ec.Report.Error (622, loc, "Can only use array initializer expressions to assign to array types. Try using a new expression instead");
8130                                 return false;
8131                         }
8132
8133                         array_element_type = ac.Element;
8134                         dimensions = ac.Rank;
8135
8136                         return true;
8137                 }
8138
8139                 protected override Expression DoResolve (ResolveContext ec)
8140                 {
8141                         if (type != null)
8142                                 return this;
8143
8144                         if (!ResolveArrayType (ec))
8145                                 return null;
8146
8147                         //
8148                         // validate the initializers and fill in any missing bits
8149                         //
8150                         if (!ResolveInitializers (ec))
8151                                 return null;
8152
8153                         eclass = ExprClass.Value;
8154                         return this;
8155                 }
8156
8157                 byte [] MakeByteBlob ()
8158                 {
8159                         int factor;
8160                         byte [] data;
8161                         byte [] element;
8162                         int count = array_data.Count;
8163
8164                         TypeSpec element_type = array_element_type;
8165                         if (element_type.IsEnum)
8166                                 element_type = EnumSpec.GetUnderlyingType (element_type);
8167
8168                         factor = BuiltinTypeSpec.GetSize (element_type);
8169                         if (factor == 0)
8170                                 throw new Exception ("unrecognized type in MakeByteBlob: " + element_type);
8171
8172                         data = new byte [(count * factor + 3) & ~3];
8173                         int idx = 0;
8174
8175                         for (int i = 0; i < count; ++i) {
8176                                 var c = array_data[i] as Constant;
8177                                 if (c == null) {
8178                                         idx += factor;
8179                                         continue;
8180                                 }
8181
8182                                 object v = c.GetValue ();
8183
8184                                 switch (element_type.BuiltinType) {
8185                                 case BuiltinTypeSpec.Type.Long:
8186                                         long lval = (long) v;
8187
8188                                         for (int j = 0; j < factor; ++j) {
8189                                                 data[idx + j] = (byte) (lval & 0xFF);
8190                                                 lval = (lval >> 8);
8191                                         }
8192                                         break;
8193                                 case BuiltinTypeSpec.Type.ULong:
8194                                         ulong ulval = (ulong) v;
8195
8196                                         for (int j = 0; j < factor; ++j) {
8197                                                 data[idx + j] = (byte) (ulval & 0xFF);
8198                                                 ulval = (ulval >> 8);
8199                                         }
8200                                         break;
8201                                 case BuiltinTypeSpec.Type.Float:
8202                                         var fval = SingleConverter.SingleToInt32Bits((float) v);
8203
8204                                         data[idx] = (byte) (fval & 0xff);
8205                                         data[idx + 1] = (byte) ((fval >> 8) & 0xff);
8206                                         data[idx + 2] = (byte) ((fval >> 16) & 0xff);
8207                                         data[idx + 3] = (byte) (fval >> 24);
8208                                         break;
8209                                 case BuiltinTypeSpec.Type.Double:
8210                                         element = BitConverter.GetBytes ((double) v);
8211
8212                                         for (int j = 0; j < factor; ++j)
8213                                                 data[idx + j] = element[j];
8214
8215                                         // FIXME: Handle the ARM float format.
8216                                         if (!BitConverter.IsLittleEndian)
8217                                                 System.Array.Reverse (data, idx, 8);
8218                                         break;
8219                                 case BuiltinTypeSpec.Type.Char:
8220                                         int chval = (int) ((char) v);
8221
8222                                         data[idx] = (byte) (chval & 0xff);
8223                                         data[idx + 1] = (byte) (chval >> 8);
8224                                         break;
8225                                 case BuiltinTypeSpec.Type.Short:
8226                                         int sval = (int) ((short) v);
8227
8228                                         data[idx] = (byte) (sval & 0xff);
8229                                         data[idx + 1] = (byte) (sval >> 8);
8230                                         break;
8231                                 case BuiltinTypeSpec.Type.UShort:
8232                                         int usval = (int) ((ushort) v);
8233
8234                                         data[idx] = (byte) (usval & 0xff);
8235                                         data[idx + 1] = (byte) (usval >> 8);
8236                                         break;
8237                                 case BuiltinTypeSpec.Type.Int:
8238                                         int val = (int) v;
8239
8240                                         data[idx] = (byte) (val & 0xff);
8241                                         data[idx + 1] = (byte) ((val >> 8) & 0xff);
8242                                         data[idx + 2] = (byte) ((val >> 16) & 0xff);
8243                                         data[idx + 3] = (byte) (val >> 24);
8244                                         break;
8245                                 case BuiltinTypeSpec.Type.UInt:
8246                                         uint uval = (uint) v;
8247
8248                                         data[idx] = (byte) (uval & 0xff);
8249                                         data[idx + 1] = (byte) ((uval >> 8) & 0xff);
8250                                         data[idx + 2] = (byte) ((uval >> 16) & 0xff);
8251                                         data[idx + 3] = (byte) (uval >> 24);
8252                                         break;
8253                                 case BuiltinTypeSpec.Type.SByte:
8254                                         data[idx] = (byte) (sbyte) v;
8255                                         break;
8256                                 case BuiltinTypeSpec.Type.Byte:
8257                                         data[idx] = (byte) v;
8258                                         break;
8259                                 case BuiltinTypeSpec.Type.Bool:
8260                                         data[idx] = (byte) ((bool) v ? 1 : 0);
8261                                         break;
8262                                 case BuiltinTypeSpec.Type.Decimal:
8263                                         int[] bits = Decimal.GetBits ((decimal) v);
8264                                         int p = idx;
8265
8266                                         // FIXME: For some reason, this doesn't work on the MS runtime.
8267                                         int[] nbits = new int[4];
8268                                         nbits[0] = bits[3];
8269                                         nbits[1] = bits[2];
8270                                         nbits[2] = bits[0];
8271                                         nbits[3] = bits[1];
8272
8273                                         for (int j = 0; j < 4; j++) {
8274                                                 data[p++] = (byte) (nbits[j] & 0xff);
8275                                                 data[p++] = (byte) ((nbits[j] >> 8) & 0xff);
8276                                                 data[p++] = (byte) ((nbits[j] >> 16) & 0xff);
8277                                                 data[p++] = (byte) (nbits[j] >> 24);
8278                                         }
8279                                         break;
8280                                 default:
8281                                         throw new Exception ("Unrecognized type in MakeByteBlob: " + element_type);
8282                                 }
8283
8284                                 idx += factor;
8285                         }
8286
8287                         return data;
8288                 }
8289
8290                 public override SLE.Expression MakeExpression (BuilderContext ctx)
8291                 {
8292 #if STATIC
8293                         return base.MakeExpression (ctx);
8294 #else
8295                         var initializers = new SLE.Expression [array_data.Count];
8296                         for (var i = 0; i < initializers.Length; i++) {
8297                                 if (array_data [i] == null)
8298                                         initializers [i] = SLE.Expression.Default (array_element_type.GetMetaInfo ());
8299                                 else
8300                                         initializers [i] = array_data [i].MakeExpression (ctx);
8301                         }
8302
8303                         return SLE.Expression.NewArrayInit (array_element_type.GetMetaInfo (), initializers);
8304 #endif
8305                 }
8306 #if STATIC
8307                 //
8308                 // Emits the initializers for the array
8309                 //
8310                 void EmitStaticInitializers (EmitContext ec, FieldExpr stackArray)
8311                 {
8312                         var m = ec.Module.PredefinedMembers.RuntimeHelpersInitializeArray.Resolve (loc);
8313                         if (m == null)
8314                                 return;
8315
8316                         //
8317                         // First, the static data
8318                         //
8319                         byte [] data = MakeByteBlob ();
8320                         var fb = ec.CurrentTypeDefinition.Module.MakeStaticData (data, loc);
8321
8322                         if (stackArray == null) {
8323                                 ec.Emit (OpCodes.Dup);
8324                         } else {
8325                                 stackArray.Emit (ec);
8326                         }
8327
8328                         ec.Emit (OpCodes.Ldtoken, fb);
8329                         ec.Emit (OpCodes.Call, m);
8330                 }
8331 #endif
8332
8333                 //
8334                 // Emits pieces of the array that can not be computed at compile
8335                 // time (variables and string locations).
8336                 //
8337                 // This always expect the top value on the stack to be the array
8338                 //
8339                 void EmitDynamicInitializers (EmitContext ec, bool emitConstants, StackFieldExpr stackArray)
8340                 {
8341                         int dims = bounds.Count;
8342                         var current_pos = new int [dims];
8343
8344                         for (int i = 0; i < array_data.Count; i++){
8345
8346                                 Expression e = array_data [i];
8347                                 var c = e as Constant;
8348
8349                                 // Constant can be initialized via StaticInitializer
8350                                 if (c == null || (c != null && emitConstants && !c.IsDefaultInitializer (array_element_type))) {
8351
8352                                         var etype = e.Type;
8353
8354                                         if (stackArray != null) {
8355                                                 if (e.ContainsEmitWithAwait ()) {
8356                                                         e = e.EmitToField (ec);
8357                                                 }
8358
8359                                                 stackArray.EmitLoad (ec);
8360                                         } else {
8361                                                 ec.Emit (OpCodes.Dup);
8362                                         }
8363
8364                                         for (int idx = 0; idx < dims; idx++) 
8365                                                 ec.EmitInt (current_pos [idx]);
8366
8367                                         //
8368                                         // If we are dealing with a struct, get the
8369                                         // address of it, so we can store it.
8370                                         //
8371                                         if (dims == 1 && etype.IsStruct && !BuiltinTypeSpec.IsPrimitiveType (etype))
8372                                                 ec.Emit (OpCodes.Ldelema, etype);
8373
8374                                         e.Emit (ec);
8375
8376                                         ec.EmitArrayStore ((ArrayContainer) type);
8377                                 }
8378                                 
8379                                 //
8380                                 // Advance counter
8381                                 //
8382                                 for (int j = dims - 1; j >= 0; j--){
8383                                         current_pos [j]++;
8384                                         if (current_pos [j] < bounds [j])
8385                                                 break;
8386                                         current_pos [j] = 0;
8387                                 }
8388                         }
8389
8390                         if (stackArray != null)
8391                                 stackArray.PrepareCleanup (ec);
8392                 }
8393
8394                 public override void Emit (EmitContext ec)
8395                 {
8396                         var await_field = EmitToFieldSource (ec);
8397                         if (await_field != null)
8398                                 await_field.Emit (ec);
8399                 }
8400
8401                 protected sealed override FieldExpr EmitToFieldSource (EmitContext ec)
8402                 {
8403                         if (first_emit != null) {
8404                                 first_emit.Emit (ec);
8405                                 first_emit_temp.Store (ec);
8406                         }
8407
8408                         StackFieldExpr await_stack_field;
8409                         if (ec.HasSet (BuilderContext.Options.AsyncBody) && InitializersContainAwait ()) {
8410                                 await_stack_field = ec.GetTemporaryField (type);
8411                                 ec.EmitThis ();
8412                         } else {
8413                                 await_stack_field = null;
8414                         }
8415
8416                         EmitExpressionsList (ec, arguments);
8417
8418                         ec.EmitArrayNew ((ArrayContainer) type);
8419                         
8420                         if (initializers == null)
8421                                 return await_stack_field;
8422
8423                         if (await_stack_field != null)
8424                                 await_stack_field.EmitAssignFromStack (ec);
8425
8426 #if STATIC
8427                         //
8428                         // Emit static initializer for arrays which contain more than 2 items and
8429                         // the static initializer will initialize at least 25% of array values or there
8430                         // is more than 10 items to be initialized
8431                         //
8432                         // NOTE: const_initializers_count does not contain default constant values.
8433                         //
8434                         if (const_initializers_count > 2 && (array_data.Count > 10 || const_initializers_count * 4 > (array_data.Count)) &&
8435                                 (BuiltinTypeSpec.IsPrimitiveType (array_element_type) || array_element_type.IsEnum)) {
8436                                 EmitStaticInitializers (ec, await_stack_field);
8437
8438                                 if (!only_constant_initializers)
8439                                         EmitDynamicInitializers (ec, false, await_stack_field);
8440                         } else
8441 #endif
8442                         {
8443                                 EmitDynamicInitializers (ec, true, await_stack_field);
8444                         }
8445
8446                         if (first_emit_temp != null)
8447                                 first_emit_temp.Release (ec);
8448
8449                         return await_stack_field;
8450                 }
8451
8452                 public override void EncodeAttributeValue (IMemberContext rc, AttributeEncoder enc, TypeSpec targetType, TypeSpec parameterType)
8453                 {
8454                         // no multi dimensional or jagged arrays
8455                         if (arguments.Count != 1 || array_element_type.IsArray) {
8456                                 base.EncodeAttributeValue (rc, enc, targetType, parameterType);
8457                                 return;
8458                         }
8459
8460                         // No array covariance, except for array -> object
8461                         if (type != targetType) {
8462                                 if (targetType.BuiltinType != BuiltinTypeSpec.Type.Object) {
8463                                         base.EncodeAttributeValue (rc, enc, targetType, parameterType);
8464                                         return;
8465                                 }
8466
8467                                 if (enc.Encode (type) == AttributeEncoder.EncodedTypeProperties.DynamicType) {
8468                                         Attribute.Error_AttributeArgumentIsDynamic (rc, loc);
8469                                         return;
8470                                 }
8471                         }
8472
8473                         // Single dimensional array of 0 size
8474                         if (array_data == null) {
8475                                 IntConstant ic = arguments[0] as IntConstant;
8476                                 if (ic == null || !ic.IsDefaultValue) {
8477                                         base.EncodeAttributeValue (rc, enc, targetType, parameterType);
8478                                 } else {
8479                                         enc.Encode (0);
8480                                 }
8481
8482                                 return;
8483                         }
8484
8485                         enc.Encode (array_data.Count);
8486                         foreach (var element in array_data) {
8487                                 element.EncodeAttributeValue (rc, enc, array_element_type, parameterType);
8488                         }
8489                 }
8490                 
8491                 protected override void CloneTo (CloneContext clonectx, Expression t)
8492                 {
8493                         ArrayCreation target = (ArrayCreation) t;
8494
8495                         if (requested_base_type != null)
8496                                 target.requested_base_type = (FullNamedExpression)requested_base_type.Clone (clonectx);
8497
8498                         if (arguments != null){
8499                                 target.arguments = new List<Expression> (arguments.Count);
8500                                 foreach (Expression e in arguments)
8501                                         target.arguments.Add (e.Clone (clonectx));
8502                         }
8503
8504                         if (initializers != null)
8505                                 target.initializers = (ArrayInitializer) initializers.Clone (clonectx);
8506                 }
8507                 
8508                 public override object Accept (StructuralVisitor visitor)
8509                 {
8510                         return visitor.Visit (this);
8511                 }
8512         }
8513         
8514         //
8515         // Represents an implicitly typed array epxression
8516         //
8517         class ImplicitlyTypedArrayCreation : ArrayCreation
8518         {
8519                 TypeInferenceContext best_type_inference;
8520
8521                 public ImplicitlyTypedArrayCreation (ComposedTypeSpecifier rank, ArrayInitializer initializers, Location loc)
8522                         : base (null, rank, initializers, loc)
8523                 {                       
8524                 }
8525
8526                 public ImplicitlyTypedArrayCreation (ArrayInitializer initializers, Location loc)
8527                         : base (null, initializers, loc)
8528                 {
8529                 }
8530
8531                 protected override Expression DoResolve (ResolveContext ec)
8532                 {
8533                         if (type != null)
8534                                 return this;
8535
8536                         dimensions = rank.Dimension;
8537
8538                         best_type_inference = new TypeInferenceContext ();
8539
8540                         if (!ResolveInitializers (ec))
8541                                 return null;
8542
8543                         best_type_inference.FixAllTypes (ec);
8544                         array_element_type = best_type_inference.InferredTypeArguments[0];
8545                         best_type_inference = null;
8546
8547                         if (array_element_type == null ||
8548                                 array_element_type == InternalType.NullLiteral || array_element_type == InternalType.MethodGroup || array_element_type == InternalType.AnonymousMethod ||
8549                                 arguments.Count != rank.Dimension) {
8550                                 ec.Report.Error (826, loc,
8551                                         "The type of an implicitly typed array cannot be inferred from the initializer. Try specifying array type explicitly");
8552                                 return null;
8553                         }
8554
8555                         //
8556                         // At this point we found common base type for all initializer elements
8557                         // but we have to be sure that all static initializer elements are of
8558                         // same type
8559                         //
8560                         UnifyInitializerElement (ec);
8561
8562                         type = ArrayContainer.MakeType (ec.Module, array_element_type, dimensions);
8563                         eclass = ExprClass.Value;
8564                         return this;
8565                 }
8566
8567                 //
8568                 // Converts static initializer only
8569                 //
8570                 void UnifyInitializerElement (ResolveContext ec)
8571                 {
8572                         for (int i = 0; i < array_data.Count; ++i) {
8573                                 Expression e = array_data[i];
8574                                 if (e != null)
8575                                         array_data [i] = Convert.ImplicitConversion (ec, e, array_element_type, Location.Null);
8576                         }
8577                 }
8578
8579                 protected override Expression ResolveArrayElement (ResolveContext ec, Expression element)
8580                 {
8581                         element = element.Resolve (ec);
8582                         if (element != null)
8583                                 best_type_inference.AddCommonTypeBound (element.Type);
8584
8585                         return element;
8586                 }
8587         }       
8588         
8589         sealed class CompilerGeneratedThis : This
8590         {
8591                 public CompilerGeneratedThis (TypeSpec type, Location loc)
8592                         : base (loc)
8593                 {
8594                         this.type = type;
8595                 }
8596
8597                 protected override Expression DoResolve (ResolveContext rc)
8598                 {
8599                         eclass = ExprClass.Variable;
8600
8601                         var block = rc.CurrentBlock;
8602                         if (block != null) {
8603                                 var top = block.ParametersBlock.TopBlock;
8604                                 if (top.ThisVariable != null)
8605                                         variable_info = top.ThisVariable.VariableInfo;
8606
8607                         }
8608
8609                         return this;
8610                 }
8611
8612                 public override Expression DoResolveLValue (ResolveContext rc, Expression right_side)
8613                 {
8614                         return DoResolve (rc);
8615                 }
8616
8617                 public override HoistedVariable GetHoistedVariable (AnonymousExpression ae)
8618                 {
8619                         return null;
8620                 }
8621         }
8622         
8623         /// <summary>
8624         ///   Represents the `this' construct
8625         /// </summary>
8626
8627         public class This : VariableReference
8628         {
8629                 sealed class ThisVariable : ILocalVariable
8630                 {
8631                         public static readonly ILocalVariable Instance = new ThisVariable ();
8632
8633                         public void Emit (EmitContext ec)
8634                         {
8635                                 ec.EmitThis ();
8636                         }
8637
8638                         public void EmitAssign (EmitContext ec)
8639                         {
8640                                 throw new InvalidOperationException ();
8641                         }
8642
8643                         public void EmitAddressOf (EmitContext ec)
8644                         {
8645                                 ec.EmitThis ();
8646                         }
8647                 }
8648
8649                 protected VariableInfo variable_info;
8650
8651                 public This (Location loc)
8652                 {
8653                         this.loc = loc;
8654                 }
8655
8656                 #region Properties
8657
8658                 public override string Name {
8659                         get { return "this"; }
8660                 }
8661
8662                 public override bool IsLockedByStatement {
8663                         get {
8664                                 return false;
8665                         }
8666                         set {
8667                         }
8668                 }
8669
8670                 public override bool IsRef {
8671                         get { return type.IsStruct; }
8672                 }
8673
8674                 public override bool IsSideEffectFree {
8675                         get {
8676                                 return true;
8677                         }
8678                 }
8679
8680                 protected override ILocalVariable Variable {
8681                         get { return ThisVariable.Instance; }
8682                 }
8683
8684                 public override VariableInfo VariableInfo {
8685                         get { return variable_info; }
8686                 }
8687
8688                 public override bool IsFixed {
8689                         get { return false; }
8690                 }
8691
8692                 #endregion
8693
8694                 void CheckStructThisDefiniteAssignment (FlowAnalysisContext fc)
8695                 {
8696                         //
8697                         // It's null for all cases when we don't need to check `this'
8698                         // definitive assignment
8699                         //
8700                         if (variable_info == null)
8701                                 return;
8702
8703                         if (fc.IsDefinitelyAssigned (variable_info))
8704                                 return;
8705
8706                         fc.Report.Error (188, loc, "The `this' object cannot be used before all of its fields are assigned to");
8707                 }
8708
8709                 protected virtual void Error_ThisNotAvailable (ResolveContext ec)
8710                 {
8711                         if (ec.IsStatic && !ec.HasSet (ResolveContext.Options.ConstantScope)) {
8712                                 ec.Report.Error (26, loc, "Keyword `this' is not valid in a static property, static method, or static field initializer");
8713                         } else if (ec.CurrentAnonymousMethod != null) {
8714                                 ec.Report.Error (1673, loc,
8715                                         "Anonymous methods inside structs cannot access instance members of `this'. " +
8716                                         "Consider copying `this' to a local variable outside the anonymous method and using the local instead");
8717                         } else {
8718                                 ec.Report.Error (27, loc, "Keyword `this' is not available in the current context");
8719                         }
8720                 }
8721
8722                 public override void FlowAnalysis (FlowAnalysisContext fc)
8723                 {
8724                         CheckStructThisDefiniteAssignment (fc);
8725                 }
8726
8727                 public override HoistedVariable GetHoistedVariable (AnonymousExpression ae)
8728                 {
8729                         if (ae == null)
8730                                 return null;
8731
8732                         AnonymousMethodStorey storey = ae.Storey;
8733                         return storey != null ? storey.HoistedThis : null;
8734                 }
8735
8736                 public static bool IsThisAvailable (ResolveContext ec, bool ignoreAnonymous)
8737                 {
8738                         if (ec.IsStatic || ec.HasAny (ResolveContext.Options.FieldInitializerScope | ResolveContext.Options.BaseInitializer | ResolveContext.Options.ConstantScope))
8739                                 return false;
8740
8741                         if (ignoreAnonymous || ec.CurrentAnonymousMethod == null)
8742                                 return true;
8743
8744                         if (ec.CurrentType.IsStruct && !(ec.CurrentAnonymousMethod is StateMachineInitializer))
8745                                 return false;
8746
8747                         return true;
8748                 }
8749
8750                 public virtual void ResolveBase (ResolveContext ec)
8751                 {
8752                         eclass = ExprClass.Variable;
8753                         type = ec.CurrentType;
8754
8755                         if (!IsThisAvailable (ec, false)) {
8756                                 Error_ThisNotAvailable (ec);
8757                                 return;
8758                         }
8759
8760                         var block = ec.CurrentBlock;
8761                         if (block != null) {
8762                                 var top = block.ParametersBlock.TopBlock;
8763                                 if (top.ThisVariable != null)
8764                                         variable_info = top.ThisVariable.VariableInfo;
8765
8766                                 AnonymousExpression am = ec.CurrentAnonymousMethod;
8767                                 if (am != null && ec.IsVariableCapturingRequired && !block.Explicit.HasCapturedThis) {
8768                                         //
8769                                         // Hoisted this is almost like hoisted variable but not exactly. When
8770                                         // there is no variable hoisted we can simply emit an instance method
8771                                         // without lifting this into a storey. Unfotunatelly this complicates
8772                                         // things in other cases because we don't know where this will be hoisted
8773                                         // until top-level block is fully resolved
8774                                         //
8775                                         top.AddThisReferenceFromChildrenBlock (block.Explicit);
8776                                         am.SetHasThisAccess ();
8777                                 }
8778                         }
8779                 }
8780
8781                 protected override Expression DoResolve (ResolveContext ec)
8782                 {
8783                         ResolveBase (ec);
8784                         return this;
8785                 }
8786
8787                 public override Expression DoResolveLValue (ResolveContext ec, Expression right_side)
8788                 {
8789                         if (eclass == ExprClass.Unresolved)
8790                                 ResolveBase (ec);
8791
8792                         if (type.IsClass){
8793                                 if (right_side == EmptyExpression.UnaryAddress)
8794                                         ec.Report.Error (459, loc, "Cannot take the address of `this' because it is read-only");
8795                                 else if (right_side == EmptyExpression.OutAccess)
8796                                         ec.Report.Error (1605, loc, "Cannot pass `this' as a ref or out argument because it is read-only");
8797                                 else
8798                                         ec.Report.Error (1604, loc, "Cannot assign to `this' because it is read-only");
8799                         }
8800
8801                         return this;
8802                 }
8803
8804                 public override int GetHashCode()
8805                 {
8806                         throw new NotImplementedException ();
8807                 }
8808
8809                 public override bool Equals (object obj)
8810                 {
8811                         This t = obj as This;
8812                         if (t == null)
8813                                 return false;
8814
8815                         return true;
8816                 }
8817
8818                 protected override void CloneTo (CloneContext clonectx, Expression t)
8819                 {
8820                         // Nothing
8821                 }
8822
8823                 public override void SetHasAddressTaken ()
8824                 {
8825                         // Nothing
8826                 }
8827                 
8828                 public override object Accept (StructuralVisitor visitor)
8829                 {
8830                         return visitor.Visit (this);
8831                 }
8832         }
8833
8834         /// <summary>
8835         ///   Represents the `__arglist' construct
8836         /// </summary>
8837         public class ArglistAccess : Expression
8838         {
8839                 public ArglistAccess (Location loc)
8840                 {
8841                         this.loc = loc;
8842                 }
8843
8844                 protected override void CloneTo (CloneContext clonectx, Expression target)
8845                 {
8846                         // nothing.
8847                 }
8848
8849                 public override bool ContainsEmitWithAwait ()
8850                 {
8851                         return false;
8852                 }
8853
8854                 public override Expression CreateExpressionTree (ResolveContext ec)
8855                 {
8856                         throw new NotSupportedException ("ET");
8857                 }
8858
8859                 protected override Expression DoResolve (ResolveContext ec)
8860                 {
8861                         eclass = ExprClass.Variable;
8862                         type = ec.Module.PredefinedTypes.RuntimeArgumentHandle.Resolve ();
8863
8864                         if (ec.HasSet (ResolveContext.Options.FieldInitializerScope) || !ec.CurrentBlock.ParametersBlock.Parameters.HasArglist) {
8865                                 ec.Report.Error (190, loc,
8866                                         "The __arglist construct is valid only within a variable argument method");
8867                         }
8868
8869                         return this;
8870                 }
8871
8872                 public override void Emit (EmitContext ec)
8873                 {
8874                         ec.Emit (OpCodes.Arglist);
8875                 }
8876
8877                 public override object Accept (StructuralVisitor visitor)
8878                 {
8879                         return visitor.Visit (this);
8880                 }
8881         }
8882
8883         /// <summary>
8884         ///   Represents the `__arglist (....)' construct
8885         /// </summary>
8886         public class Arglist : Expression
8887         {
8888                 Arguments arguments;
8889
8890                 public Arglist (Location loc)
8891                         : this (null, loc)
8892                 {
8893                 }
8894
8895                 public Arglist (Arguments args, Location l)
8896                 {
8897                         arguments = args;
8898                         loc = l;
8899                 }
8900
8901                 public Arguments Arguments {
8902                         get {
8903                                 return arguments;
8904                         }
8905                 }
8906
8907                 public MetaType[] ArgumentTypes {
8908                     get {
8909                                 if (arguments == null)
8910                                         return MetaType.EmptyTypes;
8911
8912                                 var retval = new MetaType[arguments.Count];
8913                                 for (int i = 0; i < retval.Length; i++)
8914                                         retval[i] = arguments[i].Expr.Type.GetMetaInfo ();
8915
8916                         return retval;
8917                     }
8918                 }
8919
8920                 public override bool ContainsEmitWithAwait ()
8921                 {
8922                         throw new NotImplementedException ();
8923                 }
8924                 
8925                 public override Expression CreateExpressionTree (ResolveContext ec)
8926                 {
8927                         ec.Report.Error (1952, loc, "An expression tree cannot contain a method with variable arguments");
8928                         return null;
8929                 }
8930
8931                 protected override Expression DoResolve (ResolveContext ec)
8932                 {
8933                         eclass = ExprClass.Variable;
8934                         type = InternalType.Arglist;
8935                         if (arguments != null) {
8936                                 bool dynamic;   // Can be ignored as there is always only 1 overload
8937                                 arguments.Resolve (ec, out dynamic);
8938                         }
8939
8940                         return this;
8941                 }
8942
8943                 public override void Emit (EmitContext ec)
8944                 {
8945                         if (arguments != null)
8946                                 arguments.Emit (ec);
8947                 }
8948
8949                 protected override void CloneTo (CloneContext clonectx, Expression t)
8950                 {
8951                         Arglist target = (Arglist) t;
8952
8953                         if (arguments != null)
8954                                 target.arguments = arguments.Clone (clonectx);
8955                 }
8956
8957                 public override object Accept (StructuralVisitor visitor)
8958                 {
8959                         return visitor.Visit (this);
8960                 }
8961         }
8962
8963         public class RefValueExpr : ShimExpression, IAssignMethod, IMemoryLocation
8964         {
8965                 FullNamedExpression texpr;
8966
8967                 public RefValueExpr (Expression expr, FullNamedExpression texpr, Location loc)
8968                         : base (expr)
8969                 {
8970                         this.texpr = texpr;
8971                         this.loc = loc;
8972                 }
8973
8974                 public FullNamedExpression TypeExpression {
8975                         get {
8976                                 return texpr;
8977                         }
8978                 }
8979
8980                 public override bool ContainsEmitWithAwait ()
8981                 {
8982                         return false;
8983                 }
8984
8985                 public void AddressOf (EmitContext ec, AddressOp mode)
8986                 {
8987                         expr.Emit (ec);
8988                         ec.Emit (OpCodes.Refanyval, type);
8989                 }
8990
8991                 protected override Expression DoResolve (ResolveContext rc)
8992                 {
8993                         expr = expr.Resolve (rc);
8994                         type = texpr.ResolveAsType (rc);
8995                         if (expr == null || type == null)
8996                                 return null;
8997
8998                         expr = Convert.ImplicitConversionRequired (rc, expr, rc.Module.PredefinedTypes.TypedReference.Resolve (), loc);
8999                         eclass = ExprClass.Variable;
9000                         return this;
9001                 }
9002
9003                 public override Expression DoResolveLValue (ResolveContext rc, Expression right_side)
9004                 {
9005                         return DoResolve (rc);
9006                 }
9007
9008                 public override void Emit (EmitContext ec)
9009                 {
9010                         expr.Emit (ec);
9011                         ec.Emit (OpCodes.Refanyval, type);
9012                         ec.EmitLoadFromPtr (type);
9013                 }
9014
9015                 public void Emit (EmitContext ec, bool leave_copy)
9016                 {
9017                         throw new NotImplementedException ();
9018                 }
9019
9020                 public void EmitAssign (EmitContext ec, Expression source, bool leave_copy, bool isCompound)
9021                 {
9022                         expr.Emit (ec);
9023                         ec.Emit (OpCodes.Refanyval, type);
9024                         source.Emit (ec);
9025
9026                         LocalTemporary temporary = null;
9027                         if (leave_copy) {
9028                                 ec.Emit (OpCodes.Dup);
9029                                 temporary = new LocalTemporary (source.Type);
9030                                 temporary.Store (ec);
9031                         }
9032
9033                         ec.EmitStoreFromPtr (type);
9034
9035                         if (temporary != null) {
9036                                 temporary.Emit (ec);
9037                                 temporary.Release (ec);
9038                         }
9039                 }
9040
9041                 public override object Accept (StructuralVisitor visitor)
9042                 {
9043                         return visitor.Visit (this);
9044                 }
9045         }
9046
9047         public class RefTypeExpr : ShimExpression
9048         {
9049                 public RefTypeExpr (Expression expr, Location loc)
9050                         : base (expr)
9051                 {
9052                         this.loc = loc;
9053                 }
9054
9055                 protected override Expression DoResolve (ResolveContext rc)
9056                 {
9057                         expr = expr.Resolve (rc);
9058                         if (expr == null)
9059                                 return null;
9060
9061                         expr = Convert.ImplicitConversionRequired (rc, expr, rc.Module.PredefinedTypes.TypedReference.Resolve (), loc);
9062                         if (expr == null)
9063                                 return null;
9064
9065                         type = rc.BuiltinTypes.Type;
9066                         eclass = ExprClass.Value;
9067                         return this;
9068                 }
9069
9070                 public override void Emit (EmitContext ec)
9071                 {
9072                         expr.Emit (ec);
9073                         ec.Emit (OpCodes.Refanytype);
9074                         var m = ec.Module.PredefinedMembers.TypeGetTypeFromHandle.Resolve (loc);
9075                         if (m != null)
9076                                 ec.Emit (OpCodes.Call, m);
9077                 }
9078                 
9079                 public override object Accept (StructuralVisitor visitor)
9080                 {
9081                         return visitor.Visit (this);
9082                 }
9083         }
9084
9085         public class MakeRefExpr : ShimExpression
9086         {
9087                 public MakeRefExpr (Expression expr, Location loc)
9088                         : base (expr)
9089                 {
9090                         this.loc = loc;
9091                 }
9092
9093                 public override bool ContainsEmitWithAwait ()
9094                 {
9095                         throw new NotImplementedException ();
9096                 }
9097
9098                 protected override Expression DoResolve (ResolveContext rc)
9099                 {
9100                         expr = expr.ResolveLValue (rc, EmptyExpression.LValueMemberAccess);
9101                         type = rc.Module.PredefinedTypes.TypedReference.Resolve ();
9102                         eclass = ExprClass.Value;
9103                         return this;
9104                 }
9105
9106                 public override void Emit (EmitContext ec)
9107                 {
9108                         ((IMemoryLocation) expr).AddressOf (ec, AddressOp.Load);
9109                         ec.Emit (OpCodes.Mkrefany, expr.Type);
9110                 }
9111                 
9112                 public override object Accept (StructuralVisitor visitor)
9113                 {
9114                         return visitor.Visit (this);
9115                 }
9116         }
9117
9118         /// <summary>
9119         ///   Implements the typeof operator
9120         /// </summary>
9121         public class TypeOf : Expression {
9122                 FullNamedExpression QueriedType;
9123                 TypeSpec typearg;
9124
9125                 public TypeOf (FullNamedExpression queried_type, Location l)
9126                 {
9127                         QueriedType = queried_type;
9128                         loc = l;
9129                 }
9130
9131                 //
9132                 // Use this constructor for any compiler generated typeof expression
9133                 //
9134                 public TypeOf (TypeSpec type, Location loc)
9135                 {
9136                         this.typearg = type;
9137                         this.loc = loc;
9138                 }
9139
9140                 #region Properties
9141
9142                 public override bool IsSideEffectFree {
9143                         get {
9144                                 return true;
9145                         }
9146                 }
9147
9148                 public TypeSpec TypeArgument {
9149                         get {
9150                                 return typearg;
9151                         }
9152                 }
9153
9154                 public FullNamedExpression TypeExpression {
9155                         get {
9156                                 return QueriedType;
9157                         }
9158                 }
9159
9160                 #endregion
9161
9162
9163                 protected override void CloneTo (CloneContext clonectx, Expression t)
9164                 {
9165                         TypeOf target = (TypeOf) t;
9166                         if (QueriedType != null)
9167                                 target.QueriedType = (FullNamedExpression) QueriedType.Clone (clonectx);
9168                 }
9169
9170                 public override bool ContainsEmitWithAwait ()
9171                 {
9172                         return false;
9173                 }
9174
9175                 public override Expression CreateExpressionTree (ResolveContext ec)
9176                 {
9177                         Arguments args = new Arguments (2);
9178                         args.Add (new Argument (this));
9179                         args.Add (new Argument (new TypeOf (new TypeExpression (type, loc), loc)));
9180                         return CreateExpressionFactoryCall (ec, "Constant", args);
9181                 }
9182
9183                 protected override Expression DoResolve (ResolveContext ec)
9184                 {
9185                         if (eclass != ExprClass.Unresolved)
9186                                 return this;
9187
9188                         if (typearg == null) {
9189                                 //
9190                                 // Pointer types are allowed without explicit unsafe, they are just tokens
9191                                 //
9192                                 using (ec.Set (ResolveContext.Options.UnsafeScope)) {
9193                                         typearg = QueriedType.ResolveAsType (ec, true);
9194                                 }
9195
9196                                 if (typearg == null)
9197                                         return null;
9198
9199                                 if (typearg.BuiltinType == BuiltinTypeSpec.Type.Dynamic) {
9200                                         ec.Report.Error (1962, QueriedType.Location,
9201                                                 "The typeof operator cannot be used on the dynamic type");
9202                                 }
9203                         }
9204
9205                         type = ec.BuiltinTypes.Type;
9206
9207                         // Even though what is returned is a type object, it's treated as a value by the compiler.
9208                         // In particular, 'typeof (Foo).X' is something totally different from 'Foo.X'.
9209                         eclass = ExprClass.Value;
9210                         return this;
9211                 }
9212
9213                 static bool ContainsDynamicType (TypeSpec type)
9214                 {
9215                         if (type.BuiltinType == BuiltinTypeSpec.Type.Dynamic)
9216                                 return true;
9217
9218                         var element_container = type as ElementTypeSpec;
9219                         if (element_container != null)
9220                                 return ContainsDynamicType (element_container.Element);
9221
9222                         foreach (var t in type.TypeArguments) {
9223                                 if (ContainsDynamicType (t)) {
9224                                         return true;
9225                                 }
9226                         }
9227
9228                         return false;
9229                 }
9230
9231                 public override void EncodeAttributeValue (IMemberContext rc, AttributeEncoder enc, TypeSpec targetType, TypeSpec parameterType)
9232                 {
9233                         // Target type is not System.Type therefore must be object
9234                         // and we need to use different encoding sequence
9235                         if (targetType != type)
9236                                 enc.Encode (type);
9237
9238                         if (typearg is InflatedTypeSpec) {
9239                                 var gt = typearg;
9240                                 do {
9241                                         if (InflatedTypeSpec.ContainsTypeParameter (gt)) {
9242                                                 rc.Module.Compiler.Report.Error (416, loc, "`{0}': an attribute argument cannot use type parameters",
9243                                                         typearg.GetSignatureForError ());
9244                                                 return;
9245                                         }
9246
9247                                         gt = gt.DeclaringType;
9248                                 } while (gt != null);
9249                         }
9250
9251                         if (ContainsDynamicType (typearg)) {
9252                                 Attribute.Error_AttributeArgumentIsDynamic (rc, loc);
9253                                 return;
9254                         }
9255
9256                         enc.EncodeTypeName (typearg);
9257                 }
9258
9259                 public override void Emit (EmitContext ec)
9260                 {
9261                         ec.Emit (OpCodes.Ldtoken, typearg);
9262                         var m = ec.Module.PredefinedMembers.TypeGetTypeFromHandle.Resolve (loc);
9263                         if (m != null)
9264                                 ec.Emit (OpCodes.Call, m);
9265                 }
9266                 
9267                 public override object Accept (StructuralVisitor visitor)
9268                 {
9269                         return visitor.Visit (this);
9270                 }
9271         }
9272
9273         sealed class TypeOfMethod : TypeOfMember<MethodSpec>
9274         {
9275                 public TypeOfMethod (MethodSpec method, Location loc)
9276                         : base (method, loc)
9277                 {
9278                 }
9279
9280                 protected override Expression DoResolve (ResolveContext ec)
9281                 {
9282                         if (member.IsConstructor) {
9283                                 type = ec.Module.PredefinedTypes.ConstructorInfo.Resolve ();
9284                         } else {
9285                                 type = ec.Module.PredefinedTypes.MethodInfo.Resolve ();
9286                         }
9287
9288                         if (type == null)
9289                                 return null;
9290
9291                         return base.DoResolve (ec);
9292                 }
9293
9294                 public override void Emit (EmitContext ec)
9295                 {
9296                         ec.Emit (OpCodes.Ldtoken, member);
9297
9298                         base.Emit (ec);
9299                         ec.Emit (OpCodes.Castclass, type);
9300                 }
9301
9302                 protected override PredefinedMember<MethodSpec> GetTypeFromHandle (EmitContext ec)
9303                 {
9304                         return ec.Module.PredefinedMembers.MethodInfoGetMethodFromHandle;
9305                 }
9306
9307                 protected override PredefinedMember<MethodSpec> GetTypeFromHandleGeneric (EmitContext ec)
9308                 {
9309                         return ec.Module.PredefinedMembers.MethodInfoGetMethodFromHandle2;
9310                 }
9311         }
9312
9313         abstract class TypeOfMember<T> : Expression where T : MemberSpec
9314         {
9315                 protected readonly T member;
9316
9317                 protected TypeOfMember (T member, Location loc)
9318                 {
9319                         this.member = member;
9320                         this.loc = loc;
9321                 }
9322
9323                 public override bool IsSideEffectFree {
9324                         get {
9325                                 return true;
9326                         }
9327                 }
9328
9329                 public override bool ContainsEmitWithAwait ()
9330                 {
9331                         return false;
9332                 }
9333
9334                 public override Expression CreateExpressionTree (ResolveContext ec)
9335                 {
9336                         Arguments args = new Arguments (2);
9337                         args.Add (new Argument (this));
9338                         args.Add (new Argument (new TypeOf (type, loc)));
9339                         return CreateExpressionFactoryCall (ec, "Constant", args);
9340                 }
9341
9342                 protected override Expression DoResolve (ResolveContext ec)
9343                 {
9344                         eclass = ExprClass.Value;
9345                         return this;
9346                 }
9347
9348                 public override void Emit (EmitContext ec)
9349                 {
9350                         bool is_generic = member.DeclaringType.IsGenericOrParentIsGeneric;
9351                         PredefinedMember<MethodSpec> p;
9352                         if (is_generic) {
9353                                 p = GetTypeFromHandleGeneric (ec);
9354                                 ec.Emit (OpCodes.Ldtoken, member.DeclaringType);
9355                         } else {
9356                                 p = GetTypeFromHandle (ec);
9357                         }
9358
9359                         var mi = p.Resolve (loc);
9360                         if (mi != null)
9361                                 ec.Emit (OpCodes.Call, mi);
9362                 }
9363
9364                 protected abstract PredefinedMember<MethodSpec> GetTypeFromHandle (EmitContext ec);
9365                 protected abstract PredefinedMember<MethodSpec> GetTypeFromHandleGeneric (EmitContext ec);
9366         }
9367
9368         sealed class TypeOfField : TypeOfMember<FieldSpec>
9369         {
9370                 public TypeOfField (FieldSpec field, Location loc)
9371                         : base (field, loc)
9372                 {
9373                 }
9374
9375                 protected override Expression DoResolve (ResolveContext ec)
9376                 {
9377                         type = ec.Module.PredefinedTypes.FieldInfo.Resolve ();
9378                         if (type == null)
9379                                 return null;
9380
9381                         return base.DoResolve (ec);
9382                 }
9383
9384                 public override void Emit (EmitContext ec)
9385                 {
9386                         ec.Emit (OpCodes.Ldtoken, member);
9387                         base.Emit (ec);
9388                 }
9389
9390                 protected override PredefinedMember<MethodSpec> GetTypeFromHandle (EmitContext ec)
9391                 {
9392                         return ec.Module.PredefinedMembers.FieldInfoGetFieldFromHandle;
9393                 }
9394
9395                 protected override PredefinedMember<MethodSpec> GetTypeFromHandleGeneric (EmitContext ec)
9396                 {
9397                         return ec.Module.PredefinedMembers.FieldInfoGetFieldFromHandle2;
9398                 }
9399         }
9400
9401         /// <summary>
9402         ///   Implements the sizeof expression
9403         /// </summary>
9404         public class SizeOf : Expression {
9405                 readonly Expression texpr;
9406                 TypeSpec type_queried;
9407                 
9408                 public SizeOf (Expression queried_type, Location l)
9409                 {
9410                         this.texpr = queried_type;
9411                         loc = l;
9412                 }
9413
9414                 public override bool IsSideEffectFree {
9415                         get {
9416                                 return true;
9417                         }
9418                 }
9419
9420                 public Expression TypeExpression {
9421                         get {
9422                                 return texpr;
9423                         }
9424                 }
9425
9426                 public override bool ContainsEmitWithAwait ()
9427                 {
9428                         return false;
9429                 }
9430
9431                 public override Expression CreateExpressionTree (ResolveContext ec)
9432                 {
9433                         Error_PointerInsideExpressionTree (ec);
9434                         return null;
9435                 }
9436
9437                 protected override Expression DoResolve (ResolveContext ec)
9438                 {
9439                         type_queried = texpr.ResolveAsType (ec);
9440                         if (type_queried == null)
9441                                 return null;
9442
9443                         if (type_queried.IsEnum)
9444                                 type_queried = EnumSpec.GetUnderlyingType (type_queried);
9445
9446                         int size_of = BuiltinTypeSpec.GetSize (type_queried);
9447                         if (size_of > 0) {
9448                                 return new IntConstant (ec.BuiltinTypes, size_of, loc);
9449                         }
9450
9451                         if (!TypeManager.VerifyUnmanaged (ec.Module, type_queried, loc)){
9452                                 return null;
9453                         }
9454
9455                         if (!ec.IsUnsafe) {
9456                                 ec.Report.Error (233, loc,
9457                                         "`{0}' does not have a predefined size, therefore sizeof can only be used in an unsafe context (consider using System.Runtime.InteropServices.Marshal.SizeOf)",
9458                                         type_queried.GetSignatureForError ());
9459                         }
9460                         
9461                         type = ec.BuiltinTypes.Int;
9462                         eclass = ExprClass.Value;
9463                         return this;
9464                 }
9465
9466                 public override void Emit (EmitContext ec)
9467                 {
9468                         ec.Emit (OpCodes.Sizeof, type_queried);
9469                 }
9470
9471                 protected override void CloneTo (CloneContext clonectx, Expression t)
9472                 {
9473                 }
9474                 
9475                 public override object Accept (StructuralVisitor visitor)
9476                 {
9477                         return visitor.Visit (this);
9478                 }
9479         }
9480
9481         /// <summary>
9482         ///   Implements the qualified-alias-member (::) expression.
9483         /// </summary>
9484         public class QualifiedAliasMember : MemberAccess
9485         {
9486                 readonly string alias;
9487                 public static readonly string GlobalAlias = "global";
9488
9489                 public QualifiedAliasMember (string alias, string identifier, Location l)
9490                         : base (null, identifier, l)
9491                 {
9492                         this.alias = alias;
9493                 }
9494
9495                 public QualifiedAliasMember (string alias, string identifier, TypeArguments targs, Location l)
9496                         : base (null, identifier, targs, l)
9497                 {
9498                         this.alias = alias;
9499                 }
9500
9501                 public QualifiedAliasMember (string alias, string identifier, int arity, Location l)
9502                         : base (null, identifier, arity, l)
9503                 {
9504                         this.alias = alias;
9505                 }
9506
9507                 public string Alias {
9508                         get {
9509                                 return alias;
9510                         }
9511                 }
9512
9513                 public FullNamedExpression CreateExpressionFromAlias (IMemberContext mc)
9514                 {
9515                         if (alias == GlobalAlias)
9516                                 return new NamespaceExpression (mc.Module.GlobalRootNamespace, loc);
9517
9518                         int errors = mc.Module.Compiler.Report.Errors;
9519                         var expr = mc.LookupNamespaceAlias (alias);
9520                         if (expr == null) {
9521                                 if (errors == mc.Module.Compiler.Report.Errors)
9522                                         mc.Module.Compiler.Report.Error (432, loc, "Alias `{0}' not found", alias);
9523
9524                                 return null;
9525                         }
9526
9527                         return expr;
9528                 }
9529
9530                 public override FullNamedExpression ResolveAsTypeOrNamespace (IMemberContext mc, bool allowUnboundTypeArguments)
9531                 {
9532                         expr = CreateExpressionFromAlias (mc);
9533                         if (expr == null)
9534                                 return null;
9535
9536                         return base.ResolveAsTypeOrNamespace (mc, allowUnboundTypeArguments);
9537                 }
9538
9539                 protected override Expression DoResolve (ResolveContext rc)
9540                 {
9541                         return ResolveAsTypeOrNamespace (rc, false);
9542                 }
9543
9544                 public override string GetSignatureForError ()
9545                 {
9546                         string name = Name;
9547                         if (targs != null) {
9548                                 name = Name + "<" + targs.GetSignatureForError () + ">";
9549                         }
9550
9551                         return alias + "::" + name;
9552                 }
9553
9554                 public override bool HasConditionalAccess ()
9555                 {
9556                         return false;
9557                 }
9558
9559                 public override Expression LookupNameExpression (ResolveContext rc, MemberLookupRestrictions restrictions)
9560                 {
9561                         if ((restrictions & MemberLookupRestrictions.InvocableOnly) != 0) {
9562                                 rc.Module.Compiler.Report.Error (687, loc,
9563                                         "The namespace alias qualifier `::' cannot be used to invoke a method. Consider using `.' instead",
9564                                         GetSignatureForError ());
9565
9566                                 return null;
9567                         }
9568
9569                         return DoResolve (rc);
9570                 }
9571
9572                 protected override void CloneTo (CloneContext clonectx, Expression t)
9573                 {
9574                         // Nothing 
9575                 }
9576                 
9577                 public override object Accept (StructuralVisitor visitor)
9578                 {
9579                         return visitor.Visit (this);
9580                 }
9581         }
9582
9583         /// <summary>
9584         ///   Implements the member access expression
9585         /// </summary>
9586         public class MemberAccess : ATypeNameExpression
9587         {
9588                 protected Expression expr;
9589
9590                 public MemberAccess (Expression expr, string id)
9591                         : base (id, expr.Location)
9592                 {
9593                         this.expr = expr;
9594                 }
9595
9596                 public MemberAccess (Expression expr, string identifier, Location loc)
9597                         : base (identifier, loc)
9598                 {
9599                         this.expr = expr;
9600                 }
9601
9602                 public MemberAccess (Expression expr, string identifier, TypeArguments args, Location loc)
9603                         : base (identifier, args, loc)
9604                 {
9605                         this.expr = expr;
9606                 }
9607
9608                 public MemberAccess (Expression expr, string identifier, int arity, Location loc)
9609                         : base (identifier, arity, loc)
9610                 {
9611                         this.expr = expr;
9612                 }
9613
9614                 public Expression LeftExpression {
9615                         get {
9616                                 return expr;
9617                         }
9618                 }
9619
9620                 public override Location StartLocation {
9621                         get {
9622                                 return expr == null ? loc : expr.StartLocation;
9623                         }
9624                 }
9625
9626                 protected override Expression DoResolve (ResolveContext rc)
9627                 {
9628                         var e = LookupNameExpression (rc, MemberLookupRestrictions.ReadAccess | MemberLookupRestrictions.DontSetConditionalAccess);
9629                         if (e != null)
9630                                 e = e.Resolve (rc, ResolveFlags.VariableOrValue | ResolveFlags.Type | ResolveFlags.MethodGroup);
9631
9632                         return e;
9633                 }
9634
9635                 public override Expression DoResolveLValue (ResolveContext rc, Expression rhs)
9636                 {
9637                         var e = LookupNameExpression (rc, MemberLookupRestrictions.None);
9638
9639                         if (e is TypeExpr) {
9640                                 e.Error_UnexpectedKind (rc, ResolveFlags.VariableOrValue, loc);
9641                                 return null;
9642                         }
9643
9644                         if (e != null)
9645                                 e = e.ResolveLValue (rc, rhs);
9646
9647                         return e;
9648                 }
9649
9650                 protected virtual void Error_OperatorCannotBeApplied (ResolveContext rc, TypeSpec type)
9651                 {
9652                         if (type == InternalType.NullLiteral && rc.IsRuntimeBinder)
9653                                 rc.Report.Error (Report.RuntimeErrorId, loc, "Cannot perform member binding on `null' value");
9654                         else
9655                                 expr.Error_OperatorCannotBeApplied (rc, loc, ".", type);
9656                 }
9657
9658                 public override bool HasConditionalAccess ()
9659                 {
9660                         return LeftExpression.HasConditionalAccess ();
9661                 }
9662
9663                 public static bool IsValidDotExpression (TypeSpec type)
9664                 {
9665                         const MemberKind dot_kinds = MemberKind.Class | MemberKind.Struct | MemberKind.Delegate | MemberKind.Enum |
9666                                 MemberKind.Interface | MemberKind.TypeParameter | MemberKind.ArrayType;
9667
9668                         return (type.Kind & dot_kinds) != 0 || type.BuiltinType == BuiltinTypeSpec.Type.Dynamic;
9669                 }
9670
9671                 public override Expression LookupNameExpression (ResolveContext rc, MemberLookupRestrictions restrictions)
9672                 {
9673                         var sn = expr as SimpleName;
9674                         const ResolveFlags flags = ResolveFlags.VariableOrValue | ResolveFlags.Type;
9675
9676                         if (sn != null) {
9677                                 expr = sn.LookupNameExpression (rc, MemberLookupRestrictions.ReadAccess | MemberLookupRestrictions.ExactArity);
9678
9679                                 //
9680                                 // Resolve expression which does have type set as we need expression type
9681                                 // with disable flow analysis as we don't know whether left side expression
9682                                 // is used as variable or type
9683                                 //
9684                                 if (expr is VariableReference || expr is ConstantExpr || expr is Linq.TransparentMemberAccess || expr is EventExpr) {
9685                                         expr = expr.Resolve (rc);
9686                                 } else if (expr is TypeParameterExpr) {
9687                                         expr.Error_UnexpectedKind (rc, flags, sn.Location);
9688                                         expr = null;
9689                                 }
9690                         } else {
9691                                 if ((restrictions & MemberLookupRestrictions.DontSetConditionalAccess) != 0) {
9692                                         using (rc.Set (ResolveContext.Options.DontSetConditionalAccessReceiver)) {
9693                                                 expr = expr.Resolve (rc, flags);
9694                                         }
9695                                 } else {
9696                                         expr = expr.Resolve (rc, flags);
9697                                 }
9698                         }
9699
9700                         if (expr == null)
9701                                 return null;
9702
9703                         var ns = expr as NamespaceExpression;
9704                         if (ns != null) {
9705                                 var retval = ns.LookupTypeOrNamespace (rc, Name, Arity, LookupMode.Normal, loc);
9706
9707                                 if (retval == null) {
9708                                         ns.Error_NamespaceDoesNotExist (rc, Name, Arity, loc);
9709                                         return null;
9710                                 }
9711
9712                                 if (Arity > 0) {
9713                                         if (HasTypeArguments)
9714                                                 return new GenericTypeExpr (retval.Type, targs, loc);
9715
9716                                         targs.Resolve (rc, false);
9717                                 }
9718
9719                                 return retval;
9720                         }
9721
9722                         var cma = this as ConditionalMemberAccess;
9723
9724                         MemberExpr me;
9725                         TypeSpec expr_type = expr.Type;
9726                         if (expr_type.BuiltinType == BuiltinTypeSpec.Type.Dynamic) {
9727                                 me = expr as MemberExpr;
9728                                 if (me != null)
9729                                         me.ResolveInstanceExpression (rc, null);
9730
9731                                 Arguments args = new Arguments (1);
9732                                 args.Add (new Argument (expr));
9733
9734                                 if (cma != null)
9735                                         return new DynamicConditionalMemberBinder (Name, args, loc);
9736
9737                                 return new DynamicMemberBinder (Name, args, loc);
9738                         }
9739
9740                         if (cma != null) {
9741                                 if (!IsNullPropagatingValid (expr.Type)) {
9742                                         expr.Error_OperatorCannotBeApplied (rc, loc, "?", expr.Type);
9743                                         return null;
9744                                 }
9745
9746                                 if (expr_type.IsNullableType) {
9747                                         expr = Nullable.Unwrap.Create (expr.Resolve (rc), true);
9748                                         expr_type = expr.Type;
9749                                 }
9750                         }
9751
9752                         if (!IsValidDotExpression (expr_type)) {
9753                                 Error_OperatorCannotBeApplied (rc, expr_type);
9754                                 return null;
9755                         }
9756
9757                         var lookup_arity = Arity;
9758                         bool errorMode = false;
9759                         Expression member_lookup;
9760                         while (true) {
9761                                 member_lookup = MemberLookup (rc, errorMode, expr_type, Name, lookup_arity, restrictions, loc);
9762                                 if (member_lookup == null) {
9763                                         //
9764                                         // Try to look for extension method when member lookup failed
9765                                         //
9766                                         if (MethodGroupExpr.IsExtensionMethodArgument (expr)) {
9767                                                 var methods = rc.LookupExtensionMethod (Name, lookup_arity);
9768                                                 if (methods != null) {
9769                                                         var emg = new ExtensionMethodGroupExpr (methods, expr, loc);
9770                                                         if (HasTypeArguments) {
9771                                                                 if (!targs.Resolve (rc, false))
9772                                                                         return null;
9773
9774                                                                 emg.SetTypeArguments (rc, targs);
9775                                                         }
9776
9777                                                         if (cma != null)
9778                                                                 emg.ConditionalAccess = true;
9779
9780                                                         // TODO: it should really skip the checks bellow
9781                                                         return emg.Resolve (rc);
9782                                                 }
9783                                         }
9784                                 }
9785
9786                                 if (errorMode) {
9787                                         if (member_lookup == null) {
9788                                                 var dep = expr_type.GetMissingDependencies ();
9789                                                 if (dep != null) {
9790                                                         ImportedTypeDefinition.Error_MissingDependency (rc, dep, loc);
9791                                                 } else if (expr is TypeExpr) {
9792                                                         base.Error_TypeDoesNotContainDefinition (rc, expr_type, Name);
9793                                                 } else {
9794                                                         Error_TypeDoesNotContainDefinition (rc, expr_type, Name);
9795                                                 }
9796
9797                                                 return null;
9798                                         }
9799
9800                                         if (member_lookup is MethodGroupExpr || member_lookup is PropertyExpr) {
9801                                                 // Leave it to overload resolution to report correct error
9802                                         } else if (!(member_lookup is TypeExpr)) {
9803                                                 // TODO: rc.SymbolRelatedToPreviousError
9804                                                 ErrorIsInaccesible (rc, member_lookup.GetSignatureForError (), loc);
9805                                         }
9806                                         break;
9807                                 }
9808
9809                                 if (member_lookup != null)
9810                                         break;
9811
9812                                 lookup_arity = 0;
9813                                 restrictions &= ~MemberLookupRestrictions.InvocableOnly;
9814                                 errorMode = true;
9815                         }
9816
9817                         TypeExpr texpr = member_lookup as TypeExpr;
9818                         if (texpr != null) {
9819                                 if (!(expr is TypeExpr) && (sn == null || expr.ProbeIdenticalTypeName (rc, expr, sn) == expr)) {
9820                                         rc.Report.Error (572, loc, "`{0}': cannot reference a type through an expression. Consider using `{1}' instead",
9821                                                 Name, texpr.GetSignatureForError ());
9822                                 }
9823
9824                                 if (!texpr.Type.IsAccessible (rc)) {
9825                                         rc.Report.SymbolRelatedToPreviousError (member_lookup.Type);
9826                                         ErrorIsInaccesible (rc, member_lookup.Type.GetSignatureForError (), loc);
9827                                         return null;
9828                                 }
9829
9830                                 if (HasTypeArguments) {
9831                                         return new GenericTypeExpr (member_lookup.Type, targs, loc);
9832                                 }
9833
9834                                 return member_lookup;
9835                         }
9836
9837                         me = member_lookup as MemberExpr;
9838
9839                         if (sn != null && me.IsStatic && (expr = me.ProbeIdenticalTypeName (rc, expr, sn)) != expr) {
9840                                 sn = null;
9841                         }
9842
9843                         if (cma != null) {
9844                                 me.ConditionalAccess = true;
9845                         }
9846
9847                         me = me.ResolveMemberAccess (rc, expr, sn);
9848
9849                         if (Arity > 0) {
9850                                 if (!targs.Resolve (rc, false))
9851                                         return null;
9852
9853                                 me.SetTypeArguments (rc, targs);
9854                         }
9855
9856                         return me;
9857                 }
9858
9859                 public override FullNamedExpression ResolveAsTypeOrNamespace (IMemberContext rc, bool allowUnboundTypeArguments)
9860                 {
9861                         FullNamedExpression fexpr = expr as FullNamedExpression;
9862                         if (fexpr == null) {
9863                                 expr.ResolveAsType (rc);
9864                                 return null;
9865                         }
9866
9867                         FullNamedExpression expr_resolved = fexpr.ResolveAsTypeOrNamespace (rc, allowUnboundTypeArguments);
9868
9869                         if (expr_resolved == null)
9870                                 return null;
9871
9872                         var ns = expr_resolved as NamespaceExpression;
9873                         if (ns != null) {
9874                                 FullNamedExpression retval = ns.LookupTypeOrNamespace (rc, Name, Arity, LookupMode.Normal, loc);
9875
9876                                 if (retval == null) {
9877                                         ns.Error_NamespaceDoesNotExist (rc, Name, Arity, loc);
9878                                 } else if (Arity > 0) {
9879                                         if (HasTypeArguments) {
9880                                                 retval = new GenericTypeExpr (retval.Type, targs, loc);
9881                                                 if (retval.ResolveAsType (rc) == null)
9882                                                         return null;
9883                                         } else {
9884                                                 targs.Resolve (rc, allowUnboundTypeArguments);
9885
9886                                                 retval = new GenericOpenTypeExpr (retval.Type, loc);
9887                                         }
9888                                 }
9889
9890                                 return retval;
9891                         }
9892
9893                         var tnew_expr = expr_resolved.ResolveAsType (rc);
9894                         if (tnew_expr == null)
9895                                 return null;
9896
9897                         TypeSpec expr_type = tnew_expr;
9898                         if (TypeManager.IsGenericParameter (expr_type)) {
9899                                 rc.Module.Compiler.Report.Error (704, loc, "A nested type cannot be specified through a type parameter `{0}'",
9900                                         tnew_expr.GetSignatureForError ());
9901                                 return null;
9902                         }
9903
9904                         var qam = this as QualifiedAliasMember;
9905                         if (qam != null) {
9906                                 rc.Module.Compiler.Report.Error (431, loc,
9907                                         "Alias `{0}' cannot be used with `::' since it denotes a type. Consider replacing `::' with `.'",
9908                                         qam.Alias);
9909
9910                         }
9911
9912                         TypeSpec nested = null;
9913                         while (expr_type != null) {
9914                                 nested = MemberCache.FindNestedType (expr_type, Name, Arity);
9915                                 if (nested == null) {
9916                                         if (expr_type == tnew_expr) {
9917                                                 Error_IdentifierNotFound (rc, expr_type);
9918                                                 return null;
9919                                         }
9920
9921                                         expr_type = tnew_expr;
9922                                         nested = MemberCache.FindNestedType (expr_type, Name, Arity);
9923                                         ErrorIsInaccesible (rc, nested.GetSignatureForError (), loc);
9924                                         break;
9925                                 }
9926
9927                                 if (nested.IsAccessible (rc))
9928                                         break;
9929
9930                                 //
9931                                 // Keep looking after inaccessible candidate but only if
9932                                 // we are not in same context as the definition itself
9933                                 //
9934                                 if (expr_type.MemberDefinition == rc.CurrentMemberDefinition)
9935                                         break;
9936
9937                                 expr_type = expr_type.BaseType;
9938                         }
9939                         
9940                         TypeExpr texpr;
9941                         if (Arity > 0) {
9942                                 if (HasTypeArguments) {
9943                                         texpr = new GenericTypeExpr (nested, targs, loc);
9944                                 } else {
9945                                         targs.Resolve (rc, allowUnboundTypeArguments && !(expr_resolved is GenericTypeExpr));
9946
9947                                         texpr = new GenericOpenTypeExpr (nested, loc);
9948                                 }
9949                         } else if (expr_resolved is GenericOpenTypeExpr) {
9950                                 texpr = new GenericOpenTypeExpr (nested, loc);
9951                         } else {
9952                                 texpr = new TypeExpression (nested, loc);
9953                         }
9954
9955                         if (texpr.ResolveAsType (rc) == null)
9956                                 return null;
9957
9958                         return texpr;
9959                 }
9960
9961                 public void Error_IdentifierNotFound (IMemberContext rc, TypeSpec expr_type)
9962                 {
9963                         var nested = MemberCache.FindNestedType (expr_type, Name, -System.Math.Max (1, Arity));
9964
9965                         if (nested != null) {
9966                                 Error_TypeArgumentsCannotBeUsed (rc, nested, expr.Location);
9967                                 return;
9968                         }
9969
9970                         var any_other_member = MemberLookup (rc, false, expr_type, Name, 0, MemberLookupRestrictions.None, loc);
9971                         if (any_other_member != null) {
9972                                 Error_UnexpectedKind (rc, any_other_member, "type", any_other_member.ExprClassName, loc);
9973                                 return;
9974                         }
9975
9976                         rc.Module.Compiler.Report.Error (426, loc, "The nested type `{0}' does not exist in the type `{1}'",
9977                                 Name, expr_type.GetSignatureForError ());
9978                 }
9979
9980                 protected override void Error_InvalidExpressionStatement (Report report, Location loc)
9981                 {
9982                         base.Error_InvalidExpressionStatement (report, LeftExpression.Location);
9983                 }
9984
9985                 public override void Error_TypeDoesNotContainDefinition (ResolveContext ec, TypeSpec type, string name)
9986                 {
9987                         if (ec.Module.Compiler.Settings.Version > LanguageVersion.ISO_2 && !ec.IsRuntimeBinder && MethodGroupExpr.IsExtensionMethodArgument (expr)) {
9988                                 ec.Report.SymbolRelatedToPreviousError (type);
9989
9990                                 var cand = ec.Module.GlobalRootNamespace.FindExtensionMethodNamespaces (ec, name, Arity);
9991                                 string missing;
9992                                 // a using directive or an assembly reference
9993                                 if (cand != null) {
9994                                         missing = "`" + string.Join ("' or `", cand.ToArray ()) + "' using directive";
9995                                 } else {
9996                                         missing = "an assembly reference";
9997                                 }
9998
9999                                 ec.Report.Error (1061, loc,
10000                                         "Type `{0}' does not contain a definition for `{1}' and no extension method `{1}' of type `{0}' could be found. Are you missing {2}?",
10001                                         type.GetSignatureForError (), name, missing);
10002                                 return;
10003                         }
10004
10005                         base.Error_TypeDoesNotContainDefinition (ec, type, name);
10006                 }
10007
10008                 public override string GetSignatureForError ()
10009                 {
10010                         return expr.GetSignatureForError () + "." + base.GetSignatureForError ();
10011                 }
10012
10013                 protected override void CloneTo (CloneContext clonectx, Expression t)
10014                 {
10015                         MemberAccess target = (MemberAccess) t;
10016
10017                         target.expr = expr.Clone (clonectx);
10018                 }
10019                 
10020                 public override object Accept (StructuralVisitor visitor)
10021                 {
10022                         return visitor.Visit (this);
10023                 }
10024         }
10025
10026         public class ConditionalMemberAccess : MemberAccess
10027         {
10028                 public ConditionalMemberAccess (Expression expr, string identifier, TypeArguments args, Location loc)
10029                         : base (expr, identifier, args, loc)
10030                 {
10031                 }
10032
10033                 public override bool HasConditionalAccess ()
10034                 {
10035                         return true;
10036                 }
10037         }
10038
10039         /// <summary>
10040         ///   Implements checked expressions
10041         /// </summary>
10042         public class CheckedExpr : Expression {
10043
10044                 public Expression Expr;
10045
10046                 public CheckedExpr (Expression e, Location l)
10047                 {
10048                         Expr = e;
10049                         loc = l;
10050                 }
10051
10052                 public override bool ContainsEmitWithAwait ()
10053                 {
10054                         return Expr.ContainsEmitWithAwait ();
10055                 }
10056                 
10057                 public override Expression CreateExpressionTree (ResolveContext ec)
10058                 {
10059                         using (ec.With (ResolveContext.Options.AllCheckStateFlags, true))
10060                                 return Expr.CreateExpressionTree (ec);
10061                 }
10062
10063                 protected override Expression DoResolve (ResolveContext ec)
10064                 {
10065                         using (ec.With (ResolveContext.Options.AllCheckStateFlags, true))
10066                                 Expr = Expr.Resolve (ec);
10067                         
10068                         if (Expr == null)
10069                                 return null;
10070
10071                         if (Expr is Constant || Expr is MethodGroupExpr || Expr is AnonymousMethodExpression || Expr is DefaultValueExpression)
10072                                 return Expr;
10073                         
10074                         eclass = Expr.eclass;
10075                         type = Expr.Type;
10076                         return this;
10077                 }
10078
10079                 public override void Emit (EmitContext ec)
10080                 {
10081                         using (ec.With (EmitContext.Options.CheckedScope, true))
10082                                 Expr.Emit (ec);
10083                 }
10084
10085                 public override void EmitBranchable (EmitContext ec, Label target, bool on_true)
10086                 {
10087                         using (ec.With (EmitContext.Options.CheckedScope, true))
10088                                 Expr.EmitBranchable (ec, target, on_true);
10089                 }
10090
10091                 public override void FlowAnalysis (FlowAnalysisContext fc)
10092                 {
10093                         Expr.FlowAnalysis (fc);
10094                 }
10095
10096                 public override SLE.Expression MakeExpression (BuilderContext ctx)
10097                 {
10098                         using (ctx.With (BuilderContext.Options.CheckedScope, true)) {
10099                                 return Expr.MakeExpression (ctx);
10100                         }
10101                 }
10102
10103                 protected override void CloneTo (CloneContext clonectx, Expression t)
10104                 {
10105                         CheckedExpr target = (CheckedExpr) t;
10106
10107                         target.Expr = Expr.Clone (clonectx);
10108                 }
10109
10110                 public override object Accept (StructuralVisitor visitor)
10111                 {
10112                         return visitor.Visit (this);
10113                 }
10114         }
10115
10116         /// <summary>
10117         ///   Implements the unchecked expression
10118         /// </summary>
10119         public class UnCheckedExpr : Expression {
10120
10121                 public Expression Expr;
10122
10123                 public UnCheckedExpr (Expression e, Location l)
10124                 {
10125                         Expr = e;
10126                         loc = l;
10127                 }
10128
10129                 public override bool ContainsEmitWithAwait ()
10130                 {
10131                         return Expr.ContainsEmitWithAwait ();
10132                 }
10133                 
10134                 public override Expression CreateExpressionTree (ResolveContext ec)
10135                 {
10136                         using (ec.With (ResolveContext.Options.AllCheckStateFlags, false))
10137                                 return Expr.CreateExpressionTree (ec);
10138                 }
10139
10140                 protected override Expression DoResolve (ResolveContext ec)
10141                 {
10142                         using (ec.With (ResolveContext.Options.AllCheckStateFlags, false))
10143                                 Expr = Expr.Resolve (ec);
10144
10145                         if (Expr == null)
10146                                 return null;
10147
10148                         if (Expr is Constant || Expr is MethodGroupExpr || Expr is AnonymousMethodExpression || Expr is DefaultValueExpression)
10149                                 return Expr;
10150                         
10151                         eclass = Expr.eclass;
10152                         type = Expr.Type;
10153                         return this;
10154                 }
10155
10156                 public override void Emit (EmitContext ec)
10157                 {
10158                         using (ec.With (EmitContext.Options.CheckedScope, false))
10159                                 Expr.Emit (ec);
10160                 }
10161
10162                 public override void EmitBranchable (EmitContext ec, Label target, bool on_true)
10163                 {
10164                         using (ec.With (EmitContext.Options.CheckedScope, false))
10165                                 Expr.EmitBranchable (ec, target, on_true);
10166                 }
10167
10168                 public override void FlowAnalysis (FlowAnalysisContext fc)
10169                 {
10170                         Expr.FlowAnalysis (fc);
10171                 }
10172
10173                 protected override void CloneTo (CloneContext clonectx, Expression t)
10174                 {
10175                         UnCheckedExpr target = (UnCheckedExpr) t;
10176
10177                         target.Expr = Expr.Clone (clonectx);
10178                 }
10179
10180                 public override object Accept (StructuralVisitor visitor)
10181                 {
10182                         return visitor.Visit (this);
10183                 }
10184         }
10185
10186         /// <summary>
10187         ///   An Element Access expression.
10188         ///
10189         ///   During semantic analysis these are transformed into 
10190         ///   IndexerAccess, ArrayAccess or a PointerArithmetic.
10191         /// </summary>
10192         public class ElementAccess : Expression
10193         {
10194                 public Arguments Arguments;
10195                 public Expression Expr;
10196                 bool conditional_access_receiver;
10197
10198                 public ElementAccess (Expression e, Arguments args, Location loc)
10199                 {
10200                         Expr = e;
10201                         this.loc = loc;
10202                         this.Arguments = args;
10203                 }
10204
10205                 public bool ConditionalAccess { get; set; }
10206
10207                 public override Location StartLocation {
10208                         get {
10209                                 return Expr.StartLocation;
10210                         }
10211                 }
10212
10213                 public override bool ContainsEmitWithAwait ()
10214                 {
10215                         return Expr.ContainsEmitWithAwait () || Arguments.ContainsEmitWithAwait ();
10216                 }
10217
10218                 //
10219                 // We perform some simple tests, and then to "split" the emit and store
10220                 // code we create an instance of a different class, and return that.
10221                 //
10222                 Expression CreateAccessExpression (ResolveContext ec, bool conditionalAccessReceiver)
10223                 {
10224                         if (conditionalAccessReceiver)
10225                                 ec.Set (ResolveContext.Options.DontSetConditionalAccessReceiver);
10226                         
10227                         Expr = Expr.Resolve (ec);
10228
10229                         if (conditionalAccessReceiver)
10230                                 ec.With (ResolveContext.Options.DontSetConditionalAccessReceiver, false);
10231
10232                         if (Expr == null)
10233                                 return null;
10234
10235                         type = Expr.Type;
10236
10237                         if (ConditionalAccess && !IsNullPropagatingValid (type)) {
10238                                 Error_OperatorCannotBeApplied (ec, loc, "?", type);
10239                                 return null;
10240                         }
10241
10242                         if (type.IsArray) {
10243                                 var aa = new ArrayAccess (this, loc) {
10244                                         ConditionalAccess = ConditionalAccess,
10245                                 };
10246
10247                                 if (conditionalAccessReceiver)
10248                                         aa.SetConditionalAccessReceiver ();
10249
10250                                 return aa;
10251                         }
10252
10253                         if (type.IsPointer)
10254                                 return Expr.MakePointerAccess (ec, type, Arguments);
10255
10256                         FieldExpr fe = Expr as FieldExpr;
10257                         if (fe != null) {
10258                                 var ff = fe.Spec as FixedFieldSpec;
10259                                 if (ff != null) {
10260                                         return Expr.MakePointerAccess (ec, ff.ElementType, Arguments);
10261                                 }
10262                         }
10263
10264                         var indexers = MemberCache.FindMembers (type, MemberCache.IndexerNameAlias, false);
10265                         if (indexers != null || type.BuiltinType == BuiltinTypeSpec.Type.Dynamic) {
10266                                 var indexer = new IndexerExpr (indexers, type, this) {
10267                                         ConditionalAccess = ConditionalAccess
10268                                 };
10269
10270                                 if (conditionalAccessReceiver)
10271                                         indexer.SetConditionalAccessReceiver ();
10272
10273                                 return indexer;
10274                         }
10275
10276                         Error_CannotApplyIndexing (ec, type, loc);
10277
10278                         return null;
10279                 }
10280
10281                 public override Expression CreateExpressionTree (ResolveContext ec)
10282                 {
10283                         Arguments args = Arguments.CreateForExpressionTree (ec, Arguments,
10284                                 Expr.CreateExpressionTree (ec));
10285
10286                         return CreateExpressionFactoryCall (ec, "ArrayIndex", args);
10287                 }
10288
10289                 public static void Error_CannotApplyIndexing (ResolveContext rc, TypeSpec type, Location loc)
10290                 {
10291                         if (type != InternalType.ErrorType) {
10292                                 rc.Report.Error (21, loc, "Cannot apply indexing with [] to an expression of type `{0}'",
10293                                         type.GetSignatureForError ());
10294                         }
10295                 }
10296
10297                 public override bool HasConditionalAccess ()
10298                 {
10299                         return ConditionalAccess || Expr.HasConditionalAccess ();
10300                 }
10301
10302                 void ResolveConditionalAccessReceiver (ResolveContext rc)
10303                 {
10304                         if (!rc.HasSet (ResolveContext.Options.DontSetConditionalAccessReceiver) && HasConditionalAccess ()) {
10305                                 conditional_access_receiver = true;
10306                         }
10307                 }
10308
10309                 protected override Expression DoResolve (ResolveContext rc)
10310                 {
10311                         ResolveConditionalAccessReceiver (rc);
10312
10313                         var expr = CreateAccessExpression (rc, conditional_access_receiver);
10314                         if (expr == null)
10315                                 return null;
10316
10317                         return expr.Resolve (rc);
10318                 }
10319
10320                 public override Expression DoResolveLValue (ResolveContext ec, Expression rhs)
10321                 {
10322                         var res = CreateAccessExpression (ec, false);
10323                         if (res == null)
10324                                 return null;
10325
10326                         return res.ResolveLValue (ec, rhs);
10327                 }
10328                 
10329                 public override void Emit (EmitContext ec)
10330                 {
10331                         throw new Exception ("Should never be reached");
10332                 }
10333
10334                 public override void FlowAnalysis (FlowAnalysisContext fc)
10335                 {
10336                         Expr.FlowAnalysis (fc);
10337
10338                         Arguments.FlowAnalysis (fc);
10339                 }
10340
10341                 public override string GetSignatureForError ()
10342                 {
10343                         return Expr.GetSignatureForError ();
10344                 }
10345
10346                 protected override void CloneTo (CloneContext clonectx, Expression t)
10347                 {
10348                         ElementAccess target = (ElementAccess) t;
10349
10350                         target.Expr = Expr.Clone (clonectx);
10351                         if (Arguments != null)
10352                                 target.Arguments = Arguments.Clone (clonectx);
10353                 }
10354                 
10355                 public override object Accept (StructuralVisitor visitor)
10356                 {
10357                         return visitor.Visit (this);
10358                 }
10359         }
10360
10361         /// <summary>
10362         ///   Implements array access 
10363         /// </summary>
10364         public class ArrayAccess : Expression, IDynamicAssign, IMemoryLocation {
10365                 //
10366                 // Points to our "data" repository
10367                 //
10368                 ElementAccess ea;
10369
10370                 LocalTemporary temp;
10371                 bool prepared;
10372                 bool? has_await_args;
10373                 bool conditional_access_receiver;
10374                 
10375                 public ArrayAccess (ElementAccess ea_data, Location l)
10376                 {
10377                         ea = ea_data;
10378                         loc = l;
10379                 }
10380
10381                 public bool ConditionalAccess { get; set; }
10382
10383                 public void AddressOf (EmitContext ec, AddressOp mode)
10384                 {
10385                         var ac = (ArrayContainer) ea.Expr.Type;
10386
10387                         if (!has_await_args.HasValue && ec.HasSet (BuilderContext.Options.AsyncBody) && ea.Arguments.ContainsEmitWithAwait ()) {
10388                                 LoadInstanceAndArguments (ec, false, true);
10389                         }
10390
10391                         LoadInstanceAndArguments (ec, false, false);
10392
10393                         if (ac.Element.IsGenericParameter && mode == AddressOp.Load)
10394                                 ec.Emit (OpCodes.Readonly);
10395
10396                         ec.EmitArrayAddress (ac);
10397                 }
10398
10399                 public override Expression CreateExpressionTree (ResolveContext ec)
10400                 {
10401                         if (ConditionalAccess)
10402                                 Error_NullShortCircuitInsideExpressionTree (ec);
10403
10404                         return ea.CreateExpressionTree (ec);
10405                 }
10406
10407                 public override bool ContainsEmitWithAwait ()
10408                 {
10409                         return ea.ContainsEmitWithAwait ();
10410                 }
10411
10412                 public override Expression DoResolveLValue (ResolveContext ec, Expression right_side)
10413                 {
10414                         if (HasConditionalAccess ())
10415                                 Error_NullPropagatingLValue (ec);
10416
10417                         return DoResolve (ec);
10418                 }
10419
10420                 protected override Expression DoResolve (ResolveContext ec)
10421                 {
10422                         // dynamic is used per argument in ConvertExpressionToArrayIndex case
10423                         bool dynamic;
10424                         ea.Arguments.Resolve (ec, out dynamic);
10425
10426                         var ac = ea.Expr.Type as ArrayContainer;
10427                         int rank = ea.Arguments.Count;
10428                         if (ac.Rank != rank) {
10429                                 ec.Report.Error (22, ea.Location, "Wrong number of indexes `{0}' inside [], expected `{1}'",
10430                                           rank.ToString (), ac.Rank.ToString ());
10431                                 return null;
10432                         }
10433
10434                         type = ac.Element;
10435                         if (type.IsPointer && !ec.IsUnsafe) {
10436                                 UnsafeError (ec, ea.Location);
10437                         }
10438
10439                         if (conditional_access_receiver)
10440                                 type = LiftMemberType (ec, type);
10441
10442                         foreach (Argument a in ea.Arguments) {
10443                                 var na = a as NamedArgument;
10444                                 if (na != null)
10445                                         ElementAccess.Error_NamedArgument (na, ec.Report);
10446
10447                                 a.Expr = ConvertExpressionToArrayIndex (ec, a.Expr);
10448                         }
10449                         
10450                         eclass = ExprClass.Variable;
10451
10452                         return this;
10453                 }
10454
10455                 protected override void Error_NegativeArrayIndex (ResolveContext ec, Location loc)
10456                 {
10457                         ec.Report.Warning (251, 2, loc, "Indexing an array with a negative index (array indices always start at zero)");
10458                 }
10459
10460                 public override void FlowAnalysis (FlowAnalysisContext fc)
10461                 {
10462                         var da = conditional_access_receiver ? fc.BranchDefiniteAssignment () : null;
10463
10464                         ea.FlowAnalysis (fc);
10465
10466                         if (conditional_access_receiver)
10467                                 fc.DefiniteAssignment = da;
10468                 }
10469
10470                 public override bool HasConditionalAccess ()
10471                 {
10472                         return ConditionalAccess || ea.Expr.HasConditionalAccess ();
10473                 }
10474
10475                 //
10476                 // Load the array arguments into the stack.
10477                 //
10478                 void LoadInstanceAndArguments (EmitContext ec, bool duplicateArguments, bool prepareAwait)
10479                 {
10480                         if (prepareAwait) {
10481                                 ea.Expr = ea.Expr.EmitToField (ec);
10482                         } else {
10483                                 var ie = new InstanceEmitter (ea.Expr, false);
10484                                 ie.Emit (ec, ConditionalAccess);
10485
10486                                 if (duplicateArguments) {
10487                                         ec.Emit (OpCodes.Dup);
10488
10489                                         var copy = new LocalTemporary (ea.Expr.Type);
10490                                         copy.Store (ec);
10491                                         ea.Expr = copy;
10492                                 }
10493                         }
10494
10495                         var dup_args = ea.Arguments.Emit (ec, duplicateArguments, prepareAwait);
10496                         if (dup_args != null)
10497                                 ea.Arguments = dup_args;
10498                 }
10499
10500                 public void Emit (EmitContext ec, bool leave_copy)
10501                 {
10502                         if (prepared) {
10503                                 ec.EmitLoadFromPtr (type);
10504                         } else {
10505                                 if (!has_await_args.HasValue && ec.HasSet (BuilderContext.Options.AsyncBody) && ea.Arguments.ContainsEmitWithAwait ()) {
10506                                         LoadInstanceAndArguments (ec, false, true);
10507                                 }
10508
10509                                 if (conditional_access_receiver)
10510                                         ec.ConditionalAccess = new ConditionalAccessContext (type, ec.DefineLabel ());
10511
10512                                 var ac = (ArrayContainer) ea.Expr.Type;
10513                                 LoadInstanceAndArguments (ec, false, false);
10514                                 ec.EmitArrayLoad (ac);
10515
10516                                 if (conditional_access_receiver)
10517                                         ec.CloseConditionalAccess (type.IsNullableType && type != ac.Element ? type : null);
10518                         }       
10519
10520                         if (leave_copy) {
10521                                 ec.Emit (OpCodes.Dup);
10522                                 temp = new LocalTemporary (this.type);
10523                                 temp.Store (ec);
10524                         }
10525                 }
10526                 
10527                 public override void Emit (EmitContext ec)
10528                 {
10529                         Emit (ec, false);
10530                 }
10531
10532                 public void EmitAssign (EmitContext ec, Expression source, bool leave_copy, bool isCompound)
10533                 {
10534                         var ac = (ArrayContainer) ea.Expr.Type;
10535                         TypeSpec t = source.Type;
10536
10537                         has_await_args = ec.HasSet (BuilderContext.Options.AsyncBody) && (ea.Arguments.ContainsEmitWithAwait () || source.ContainsEmitWithAwait ());
10538
10539                         //
10540                         // When we are dealing with a struct, get the address of it to avoid value copy
10541                         // Same cannot be done for reference type because array covariance and the
10542                         // check in ldelema requires to specify the type of array element stored at the index
10543                         //
10544                         if (t.IsStruct && ((isCompound && !(source is DynamicExpressionStatement)) || !BuiltinTypeSpec.IsPrimitiveType (t))) {
10545                                 LoadInstanceAndArguments (ec, false, has_await_args.Value);
10546
10547                                 if (has_await_args.Value) {
10548                                         if (source.ContainsEmitWithAwait ()) {
10549                                                 source = source.EmitToField (ec);
10550                                                 isCompound = false;
10551                                                 prepared = true;
10552                                         }
10553
10554                                         LoadInstanceAndArguments (ec, isCompound, false);
10555                                 } else {
10556                                         prepared = true;
10557                                 }
10558
10559                                 ec.EmitArrayAddress (ac);
10560
10561                                 if (isCompound) {
10562                                         ec.Emit (OpCodes.Dup);
10563                                         prepared = true;
10564                                 }
10565                         } else {
10566                                 LoadInstanceAndArguments (ec, isCompound, has_await_args.Value);
10567
10568                                 if (has_await_args.Value) {
10569                                         if (source.ContainsEmitWithAwait ())
10570                                                 source = source.EmitToField (ec);
10571
10572                                         LoadInstanceAndArguments (ec, false, false);
10573                                 }
10574                         }
10575
10576                         source.Emit (ec);
10577
10578                         if (isCompound) {
10579                                 var lt = ea.Expr as LocalTemporary;
10580                                 if (lt != null)
10581                                         lt.Release (ec);
10582                         }
10583
10584                         if (leave_copy) {
10585                                 ec.Emit (OpCodes.Dup);
10586                                 temp = new LocalTemporary (this.type);
10587                                 temp.Store (ec);
10588                         }
10589
10590                         if (prepared) {
10591                                 ec.EmitStoreFromPtr (t);
10592                         } else {
10593                                 ec.EmitArrayStore (ac);
10594                         }
10595                         
10596                         if (temp != null) {
10597                                 temp.Emit (ec);
10598                                 temp.Release (ec);
10599                         }
10600                 }
10601
10602                 public override Expression EmitToField (EmitContext ec)
10603                 {
10604                         //
10605                         // Have to be specialized for arrays to get access to
10606                         // underlying element. Instead of another result copy we
10607                         // need direct access to element 
10608                         //
10609                         // Consider:
10610                         //
10611                         // CallRef (ref a[await Task.Factory.StartNew (() => 1)]);
10612                         //
10613                         ea.Expr = ea.Expr.EmitToField (ec);
10614                         ea.Arguments = ea.Arguments.Emit (ec, false, true);
10615                         return this;
10616                 }
10617
10618                 public SLE.Expression MakeAssignExpression (BuilderContext ctx, Expression source)
10619                 {
10620                         return SLE.Expression.ArrayAccess (ea.Expr.MakeExpression (ctx), MakeExpressionArguments (ctx));
10621                 }
10622
10623                 public override SLE.Expression MakeExpression (BuilderContext ctx)
10624                 {
10625                         return SLE.Expression.ArrayIndex (ea.Expr.MakeExpression (ctx), MakeExpressionArguments (ctx));
10626                 }
10627
10628                 SLE.Expression[] MakeExpressionArguments (BuilderContext ctx)
10629                 {
10630                         using (ctx.With (BuilderContext.Options.CheckedScope, true)) {
10631                                 return Arguments.MakeExpression (ea.Arguments, ctx);
10632                         }
10633                 }
10634
10635                 public void SetConditionalAccessReceiver ()
10636                 {
10637                         conditional_access_receiver = true;
10638                 }
10639         }
10640
10641         //
10642         // Indexer access expression
10643         //
10644         class IndexerExpr : PropertyOrIndexerExpr<IndexerSpec>, OverloadResolver.IBaseMembersProvider
10645         {
10646                 IList<MemberSpec> indexers;
10647                 Arguments arguments;
10648                 TypeSpec queried_type;
10649                 
10650                 public IndexerExpr (IList<MemberSpec> indexers, TypeSpec queriedType, ElementAccess ea)
10651                         : this (indexers, queriedType, ea.Expr, ea.Arguments, ea.Location)
10652                 {
10653                 }
10654
10655                 public IndexerExpr (IList<MemberSpec> indexers, TypeSpec queriedType, Expression instance, Arguments args, Location loc)
10656                         : base (loc)
10657                 {
10658                         this.indexers = indexers;
10659                         this.queried_type = queriedType;
10660                         this.InstanceExpression = instance;
10661                         this.arguments = args;
10662                 }
10663
10664                 #region Properties
10665
10666                 protected override Arguments Arguments {
10667                         get {
10668                                 return arguments;
10669                         }
10670                         set {
10671                                 arguments = value;
10672                         }
10673                 }
10674
10675                 protected override TypeSpec DeclaringType {
10676                         get {
10677                                 return best_candidate.DeclaringType;
10678                         }
10679                 }
10680
10681                 public override bool IsInstance {
10682                         get {
10683                                 return true;
10684                         }
10685                 }
10686
10687                 public override bool IsStatic {
10688                         get {
10689                                 return false;
10690                         }
10691                 }
10692
10693                 public override string KindName {
10694                         get { return "indexer"; }
10695                 }
10696
10697                 public override string Name {
10698                         get {
10699                                 return "this";
10700                         }
10701                 }
10702
10703                 #endregion
10704
10705                 public override bool ContainsEmitWithAwait ()
10706                 {
10707                         return base.ContainsEmitWithAwait () || arguments.ContainsEmitWithAwait ();
10708                 }
10709
10710                 public override Expression CreateExpressionTree (ResolveContext ec)
10711                 {
10712                         if (ConditionalAccess) {
10713                                 Error_NullShortCircuitInsideExpressionTree (ec);
10714                         }
10715
10716                         Arguments args = Arguments.CreateForExpressionTree (ec, arguments,
10717                                 InstanceExpression.CreateExpressionTree (ec),
10718                                 new TypeOfMethod (Getter, loc));
10719
10720                         return CreateExpressionFactoryCall (ec, "Call", args);
10721                 }
10722         
10723                 public override void EmitAssign (EmitContext ec, Expression source, bool leave_copy, bool isCompound)
10724                 {
10725                         LocalTemporary await_source_arg = null;
10726
10727                         if (isCompound) {
10728                                 emitting_compound_assignment = true;
10729                                 if (source is DynamicExpressionStatement) {
10730                                         Emit (ec, false);
10731                                 } else {
10732                                         source.Emit (ec);
10733                                 }
10734                                 emitting_compound_assignment = false;
10735
10736                                 if (has_await_arguments) {
10737                                         await_source_arg = new LocalTemporary (Type);
10738                                         await_source_arg.Store (ec);
10739
10740                                         arguments.Add (new Argument (await_source_arg));
10741
10742                                         if (leave_copy) {
10743                                                 temp = await_source_arg;
10744                                         }
10745
10746                                         has_await_arguments = false;
10747                                 } else {
10748                                         arguments = null;
10749
10750                                         if (leave_copy) {
10751                                                 ec.Emit (OpCodes.Dup);
10752                                                 temp = new LocalTemporary (Type);
10753                                                 temp.Store (ec);
10754                                         }
10755                                 }
10756                         } else {
10757                                 if (leave_copy) {
10758                                         if (ec.HasSet (BuilderContext.Options.AsyncBody) && (arguments.ContainsEmitWithAwait () || source.ContainsEmitWithAwait ())) {
10759                                                 source = source.EmitToField (ec);
10760                                         } else {
10761                                                 temp = new LocalTemporary (Type);
10762                                                 source.Emit (ec);
10763                                                 temp.Store (ec);
10764                                                 source = temp;
10765                                         }
10766                                 }
10767
10768                                 arguments.Add (new Argument (source));
10769                         }
10770
10771                         var call = new CallEmitter ();
10772                         call.InstanceExpression = InstanceExpression;
10773                         if (arguments == null)
10774                                 call.InstanceExpressionOnStack = true;
10775
10776                         call.Emit (ec, Setter, arguments, loc);
10777
10778                         if (temp != null) {
10779                                 temp.Emit (ec);
10780                                 temp.Release (ec);
10781                         } else if (leave_copy) {
10782                                 source.Emit (ec);
10783                         }
10784
10785                         if (await_source_arg != null) {
10786                                 await_source_arg.Release (ec);
10787                         }
10788                 }
10789
10790                 public override void FlowAnalysis (FlowAnalysisContext fc)
10791                 {
10792                         var da = conditional_access_receiver ? fc.BranchDefiniteAssignment () : null;
10793
10794                         base.FlowAnalysis (fc);
10795                         arguments.FlowAnalysis (fc);
10796
10797                         if (conditional_access_receiver)
10798                                 fc.DefiniteAssignment = da;
10799                 }
10800
10801                 public override string GetSignatureForError ()
10802                 {
10803                         return best_candidate.GetSignatureForError ();
10804                 }
10805                 
10806                 public override SLE.Expression MakeAssignExpression (BuilderContext ctx, Expression source)
10807                 {
10808 #if STATIC
10809                         throw new NotSupportedException ();
10810 #else
10811                         var value = new[] { source.MakeExpression (ctx) };
10812                         var args = Arguments.MakeExpression (arguments, ctx).Concat (value);
10813                         return SLE.Expression.Block (
10814                                         SLE.Expression.Call (InstanceExpression.MakeExpression (ctx), (MethodInfo) Setter.GetMetaInfo (), args),
10815                                         value [0]);
10816 #endif
10817                 }
10818
10819                 public override SLE.Expression MakeExpression (BuilderContext ctx)
10820                 {
10821 #if STATIC
10822                         return base.MakeExpression (ctx);
10823 #else
10824                         var args = Arguments.MakeExpression (arguments, ctx);
10825                         return SLE.Expression.Call (InstanceExpression.MakeExpression (ctx), (MethodInfo) Getter.GetMetaInfo (), args);
10826 #endif
10827                 }
10828
10829                 protected override Expression OverloadResolve (ResolveContext rc, Expression right_side)
10830                 {
10831                         if (best_candidate != null)
10832                                 return this;
10833
10834                         eclass = ExprClass.IndexerAccess;
10835
10836                         bool dynamic;
10837                         using (rc.With (ResolveContext.Options.DontSetConditionalAccessReceiver, false)) {
10838                                 arguments.Resolve (rc, out dynamic);
10839                         }
10840
10841                         if (indexers == null && InstanceExpression.Type.BuiltinType == BuiltinTypeSpec.Type.Dynamic) {
10842                                 dynamic = true;
10843                         } else {
10844                                 var res = new OverloadResolver (indexers, OverloadResolver.Restrictions.None, loc);
10845                                 res.BaseMembersProvider = this;
10846                                 res.InstanceQualifier = this;
10847
10848                                 // TODO: Do I need 2 argument sets?
10849                                 best_candidate = res.ResolveMember<IndexerSpec> (rc, ref arguments);
10850                                 if (best_candidate != null)
10851                                         type = res.BestCandidateReturnType;
10852                                 else if (!res.BestCandidateIsDynamic)
10853                                         return null;
10854                         }
10855
10856                         //
10857                         // It has dynamic arguments
10858                         //
10859                         if (dynamic) {
10860                                 Arguments args = new Arguments (arguments.Count + 1);
10861                                 if (IsBase) {
10862                                         rc.Report.Error (1972, loc,
10863                                                 "The indexer base access cannot be dynamically dispatched. Consider casting the dynamic arguments or eliminating the base access");
10864                                 } else {
10865                                         args.Add (new Argument (InstanceExpression));
10866                                 }
10867                                 args.AddRange (arguments);
10868
10869                                 best_candidate = null;
10870                                 return new DynamicIndexBinder (args, conditional_access_receiver, ConditionalAccess, loc);
10871                         }
10872
10873                         //
10874                         // Try to avoid resolving left expression again
10875                         //
10876                         if (right_side != null)
10877                                 ResolveInstanceExpression (rc, right_side);
10878
10879                         return this;
10880                 }
10881
10882                 protected override void CloneTo (CloneContext clonectx, Expression t)
10883                 {
10884                         IndexerExpr target = (IndexerExpr) t;
10885
10886                         if (arguments != null)
10887                                 target.arguments = arguments.Clone (clonectx);
10888                 }
10889
10890                 public void SetConditionalAccessReceiver ()
10891                 {
10892                         conditional_access_receiver = true;
10893                 }
10894
10895                 public override void SetTypeArguments (ResolveContext ec, TypeArguments ta)
10896                 {
10897                         Error_TypeArgumentsCannotBeUsed (ec, "indexer", GetSignatureForError (), loc);
10898                 }
10899
10900                 #region IBaseMembersProvider Members
10901
10902                 IList<MemberSpec> OverloadResolver.IBaseMembersProvider.GetBaseMembers (TypeSpec baseType)
10903                 {
10904                         return baseType == null ? null : MemberCache.FindMembers (baseType, MemberCache.IndexerNameAlias, false);
10905                 }
10906
10907                 IParametersMember OverloadResolver.IBaseMembersProvider.GetOverrideMemberParameters (MemberSpec member)
10908                 {
10909                         if (queried_type == member.DeclaringType)
10910                                 return null;
10911
10912                         var filter = new MemberFilter (MemberCache.IndexerNameAlias, 0, MemberKind.Indexer, ((IndexerSpec) member).Parameters, null);
10913                         return MemberCache.FindMember (queried_type, filter, BindingRestriction.InstanceOnly | BindingRestriction.OverrideOnly) as IParametersMember;
10914                 }
10915
10916                 MethodGroupExpr OverloadResolver.IBaseMembersProvider.LookupExtensionMethod (ResolveContext rc)
10917                 {
10918                         return null;
10919                 }
10920
10921                 #endregion
10922         }
10923
10924         //
10925         // A base access expression
10926         //
10927         public class BaseThis : This
10928         {
10929                 public BaseThis (Location loc)
10930                         : base (loc)
10931                 {
10932                 }
10933
10934                 public BaseThis (TypeSpec type, Location loc)
10935                         : base (loc)
10936                 {
10937                         this.type = type;
10938                         eclass = ExprClass.Variable;
10939                 }
10940
10941                 #region Properties
10942
10943                 public override string Name {
10944                         get {
10945                                 return "base";
10946                         }
10947                 }
10948
10949                 #endregion
10950
10951                 public override Expression CreateExpressionTree (ResolveContext ec)
10952                 {
10953                         ec.Report.Error (831, loc, "An expression tree may not contain a base access");
10954                         return base.CreateExpressionTree (ec);
10955                 }
10956
10957                 public override void Emit (EmitContext ec)
10958                 {
10959                         base.Emit (ec);
10960
10961                         if (type == ec.Module.Compiler.BuiltinTypes.ValueType) {
10962                                 var context_type = ec.CurrentType;
10963                                 ec.Emit (OpCodes.Ldobj, context_type);
10964                                 ec.Emit (OpCodes.Box, context_type);
10965                         }
10966                 }
10967
10968                 protected override void Error_ThisNotAvailable (ResolveContext ec)
10969                 {
10970                         if (ec.IsStatic) {
10971                                 ec.Report.Error (1511, loc, "Keyword `base' is not available in a static method");
10972                         } else {
10973                                 ec.Report.Error (1512, loc, "Keyword `base' is not available in the current context");
10974                         }
10975                 }
10976
10977                 public override void ResolveBase (ResolveContext ec)
10978                 {
10979                         base.ResolveBase (ec);
10980                         type = ec.CurrentType.BaseType;
10981                 }
10982
10983                 public override object Accept (StructuralVisitor visitor)
10984                 {
10985                         return visitor.Visit (this);
10986                 }
10987         }
10988
10989         /// <summary>
10990         ///   This class exists solely to pass the Type around and to be a dummy
10991         ///   that can be passed to the conversion functions (this is used by
10992         ///   foreach implementation to typecast the object return value from
10993         ///   get_Current into the proper type.  All code has been generated and
10994         ///   we only care about the side effect conversions to be performed
10995         ///
10996         ///   This is also now used as a placeholder where a no-action expression
10997         ///   is needed (the `New' class).
10998         /// </summary>
10999         public class EmptyExpression : Expression
11000         {
11001                 sealed class OutAccessExpression : EmptyExpression
11002                 {
11003                         public OutAccessExpression (TypeSpec t)
11004                                 : base (t)
11005                         {
11006                         }
11007
11008                         public override Expression DoResolveLValue (ResolveContext rc, Expression right_side)
11009                         {
11010                                 rc.Report.Error (206, right_side.Location,
11011                                         "A property, indexer or dynamic member access may not be passed as `ref' or `out' parameter");
11012
11013                                 return null;
11014                         }
11015                 }
11016
11017                 public static readonly EmptyExpression LValueMemberAccess = new EmptyExpression (InternalType.FakeInternalType);
11018                 public static readonly EmptyExpression LValueMemberOutAccess = new EmptyExpression (InternalType.FakeInternalType);
11019                 public static readonly EmptyExpression UnaryAddress = new EmptyExpression (InternalType.FakeInternalType);
11020                 public static readonly EmptyExpression EventAddition = new EmptyExpression (InternalType.FakeInternalType);
11021                 public static readonly EmptyExpression EventSubtraction = new EmptyExpression (InternalType.FakeInternalType);
11022                 public static readonly EmptyExpression MissingValue = new EmptyExpression (InternalType.FakeInternalType);
11023                 public static readonly Expression Null = new EmptyExpression (InternalType.FakeInternalType);
11024                 public static readonly EmptyExpression OutAccess = new OutAccessExpression (InternalType.FakeInternalType);
11025
11026                 public EmptyExpression (TypeSpec t)
11027                 {
11028                         type = t;
11029                         eclass = ExprClass.Value;
11030                         loc = Location.Null;
11031                 }
11032
11033                 protected override void CloneTo (CloneContext clonectx, Expression target)
11034                 {
11035                 }
11036
11037                 public override bool ContainsEmitWithAwait ()
11038                 {
11039                         return false;
11040                 }
11041
11042                 public override Expression CreateExpressionTree (ResolveContext ec)
11043                 {
11044                         throw new NotSupportedException ("ET");
11045                 }
11046                 
11047                 protected override Expression DoResolve (ResolveContext ec)
11048                 {
11049                         return this;
11050                 }
11051
11052                 public override void Emit (EmitContext ec)
11053                 {
11054                         // nothing, as we only exist to not do anything.
11055                 }
11056
11057                 public override void EmitBranchable (EmitContext ec, Label target, bool on_true)
11058                 {
11059                 }
11060
11061                 public override void EmitSideEffect (EmitContext ec)
11062                 {
11063                 }
11064
11065                 public override object Accept (StructuralVisitor visitor)
11066                 {
11067                         return visitor.Visit (this);
11068                 }
11069         }
11070         
11071         sealed class EmptyAwaitExpression : EmptyExpression
11072         {
11073                 public EmptyAwaitExpression (TypeSpec type)
11074                         : base (type)
11075                 {
11076                 }
11077                 
11078                 public override bool ContainsEmitWithAwait ()
11079                 {
11080                         return true;
11081                 }
11082         }
11083         
11084         //
11085         // Empty statement expression
11086         //
11087         public sealed class EmptyExpressionStatement : ExpressionStatement
11088         {
11089                 public static readonly EmptyExpressionStatement Instance = new EmptyExpressionStatement ();
11090
11091                 private EmptyExpressionStatement ()
11092                 {
11093                         loc = Location.Null;
11094                 }
11095
11096                 public override bool ContainsEmitWithAwait ()
11097                 {
11098                         return false;
11099                 }
11100
11101                 public override Expression CreateExpressionTree (ResolveContext ec)
11102                 {
11103                         return null;
11104                 }
11105
11106                 public override void EmitStatement (EmitContext ec)
11107                 {
11108                         // Do nothing
11109                 }
11110
11111                 protected override Expression DoResolve (ResolveContext ec)
11112                 {
11113                         eclass = ExprClass.Value;
11114                         type = ec.BuiltinTypes.Object;
11115                         return this;
11116                 }
11117
11118                 public override void Emit (EmitContext ec)
11119                 {
11120                         // Do nothing
11121                 }
11122                 
11123                 public override object Accept (StructuralVisitor visitor)
11124                 {
11125                         return visitor.Visit (this);
11126                 }
11127         }
11128
11129         public class ErrorExpression : EmptyExpression
11130         {
11131                 public static readonly ErrorExpression Instance = new ErrorExpression ();
11132
11133                 private ErrorExpression ()
11134                         : base (InternalType.ErrorType)
11135                 {
11136                 }
11137
11138                 public override Expression CreateExpressionTree (ResolveContext ec)
11139                 {
11140                         return this;
11141                 }
11142
11143                 public override Expression DoResolveLValue (ResolveContext rc, Expression right_side)
11144                 {
11145                         return this;
11146                 }
11147
11148                 public override void Error_ValueAssignment (ResolveContext rc, Expression rhs)
11149                 {
11150                 }
11151
11152                 public override void Error_UnexpectedKind (ResolveContext ec, ResolveFlags flags, Location loc)
11153                 {
11154                 }
11155
11156                 public override void Error_ValueCannotBeConverted (ResolveContext ec, TypeSpec target, bool expl)
11157                 {
11158                 }
11159
11160                 public override void Error_OperatorCannotBeApplied (ResolveContext rc, Location loc, string oper, TypeSpec t)
11161                 {
11162                 }
11163                 
11164                 public override object Accept (StructuralVisitor visitor)
11165                 {
11166                         return visitor.Visit (this);
11167                 }
11168         }
11169
11170         public class UserCast : Expression {
11171                 MethodSpec method;
11172                 Expression source;
11173                 
11174                 public UserCast (MethodSpec method, Expression source, Location l)
11175                 {
11176                         if (source == null)
11177                                 throw new ArgumentNullException ("source");
11178
11179                         this.method = method;
11180                         this.source = source;
11181                         type = method.ReturnType;
11182                         loc = l;
11183                 }
11184
11185                 public Expression Source {
11186                         get {
11187                                 return source;
11188                         }
11189                         set {
11190                                 source = value;
11191                         }
11192                 }
11193
11194                 public override bool ContainsEmitWithAwait ()
11195                 {
11196                         return source.ContainsEmitWithAwait ();
11197                 }
11198
11199                 public override Expression CreateExpressionTree (ResolveContext ec)
11200                 {
11201                         Arguments args = new Arguments (3);
11202                         args.Add (new Argument (source.CreateExpressionTree (ec)));
11203                         args.Add (new Argument (new TypeOf (type, loc)));
11204                         args.Add (new Argument (new TypeOfMethod (method, loc)));
11205                         return CreateExpressionFactoryCall (ec, "Convert", args);
11206                 }
11207                         
11208                 protected override Expression DoResolve (ResolveContext ec)
11209                 {
11210                         method.CheckObsoleteness (ec, source.Location);
11211
11212                         eclass = ExprClass.Value;
11213                         return this;
11214                 }
11215
11216                 public override void Emit (EmitContext ec)
11217                 {
11218                         source.Emit (ec);
11219                         ec.MarkCallEntry (loc);
11220                         ec.Emit (OpCodes.Call, method);
11221                 }
11222
11223                 public override void FlowAnalysis (FlowAnalysisContext fc)
11224                 {
11225                         source.FlowAnalysis (fc);
11226                 }
11227
11228                 public override string GetSignatureForError ()
11229                 {
11230                         return TypeManager.CSharpSignature (method);
11231                 }
11232
11233                 public override SLE.Expression MakeExpression (BuilderContext ctx)
11234                 {
11235 #if STATIC
11236                         return base.MakeExpression (ctx);
11237 #else
11238                         return SLE.Expression.Convert (source.MakeExpression (ctx), type.GetMetaInfo (), (MethodInfo) method.GetMetaInfo ());
11239 #endif
11240                 }
11241         }
11242
11243         //
11244         // Holds additional type specifiers like ?, *, []
11245         //
11246         public class ComposedTypeSpecifier
11247         {
11248                 public static readonly ComposedTypeSpecifier SingleDimension = new ComposedTypeSpecifier (1, Location.Null);
11249
11250                 public readonly int Dimension;
11251                 public readonly Location Location;
11252
11253                 public ComposedTypeSpecifier (int specifier, Location loc)
11254                 {
11255                         this.Dimension = specifier;
11256                         this.Location = loc;
11257                 }
11258
11259                 #region Properties
11260                 public bool IsNullable {
11261                         get {
11262                                 return Dimension == -1;
11263                         }
11264                 }
11265
11266                 public bool IsPointer {
11267                         get {
11268                                 return Dimension == -2;
11269                         }
11270                 }
11271
11272                 public ComposedTypeSpecifier Next { get; set; }
11273
11274                 #endregion
11275
11276                 public static ComposedTypeSpecifier CreateArrayDimension (int dimension, Location loc)
11277                 {
11278                         return new ComposedTypeSpecifier (dimension, loc);
11279                 }
11280
11281                 public static ComposedTypeSpecifier CreateNullable (Location loc)
11282                 {
11283                         return new ComposedTypeSpecifier (-1, loc);
11284                 }
11285
11286                 public static ComposedTypeSpecifier CreatePointer (Location loc)
11287                 {
11288                         return new ComposedTypeSpecifier (-2, loc);
11289                 }
11290
11291                 public string GetSignatureForError ()
11292                 {
11293                         string s =
11294                                 IsPointer ? "*" :
11295                                 IsNullable ? "?" :
11296                                 ArrayContainer.GetPostfixSignature (Dimension);
11297
11298                         return Next != null ? s + Next.GetSignatureForError () : s;
11299                 }
11300         }
11301
11302         // <summary>
11303         //   This class is used to "construct" the type during a typecast
11304         //   operation.  Since the Type.GetType class in .NET can parse
11305         //   the type specification, we just use this to construct the type
11306         //   one bit at a time.
11307         // </summary>
11308         public class ComposedCast : TypeExpr {
11309                 FullNamedExpression left;
11310                 ComposedTypeSpecifier spec;
11311                 
11312                 public ComposedCast (FullNamedExpression left, ComposedTypeSpecifier spec)
11313                 {
11314                         if (spec == null)
11315                                 throw new ArgumentNullException ("spec");
11316
11317                         this.left = left;
11318                         this.spec = spec;
11319                         this.loc = left.Location;
11320                 }
11321
11322                 public override TypeSpec ResolveAsType (IMemberContext ec, bool allowUnboundTypeArguments)
11323                 {
11324                         type = left.ResolveAsType (ec);
11325                         if (type == null)
11326                                 return null;
11327
11328                         eclass = ExprClass.Type;
11329
11330                         var single_spec = spec;
11331
11332                         if (single_spec.IsNullable) {
11333                                 type = new Nullable.NullableType (type, loc).ResolveAsType (ec);
11334                                 if (type == null)
11335                                         return null;
11336
11337                                 single_spec = single_spec.Next;
11338                         } else if (single_spec.IsPointer) {
11339                                 //
11340                                 // Declared fields cannot have unmanaged check done before all types are defined
11341                                 //
11342                                 if (!(ec.CurrentMemberDefinition is Field) && !TypeManager.VerifyUnmanaged (ec.Module, type, loc))
11343                                         return null;
11344
11345                                 if (!ec.IsUnsafe) {
11346                                         UnsafeError (ec.Module.Compiler.Report, loc);
11347                                 }
11348
11349                                 do {
11350                                         type = PointerContainer.MakeType (ec.Module, type);
11351                                         single_spec = single_spec.Next;
11352                                 } while (single_spec != null && single_spec.IsPointer);
11353                         }
11354
11355                         if (single_spec != null && single_spec.Dimension > 0) {
11356                                 if (type.IsSpecialRuntimeType) {
11357                                         ec.Module.Compiler.Report.Error (611, loc, "Array elements cannot be of type `{0}'", type.GetSignatureForError ());
11358                                 } else if (type.IsStatic) {
11359                                         ec.Module.Compiler.Report.SymbolRelatedToPreviousError (type);
11360                                         ec.Module.Compiler.Report.Error (719, loc, "Array elements cannot be of static type `{0}'",
11361                                                 type.GetSignatureForError ());
11362                                 } else {
11363                                         MakeArray (ec.Module, single_spec);
11364                                 }
11365                         }
11366
11367                         return type;
11368                 }
11369
11370                 void MakeArray (ModuleContainer module, ComposedTypeSpecifier spec)
11371                 {
11372                         if (spec.Next != null)
11373                                 MakeArray (module, spec.Next);
11374
11375                         type = ArrayContainer.MakeType (module, type, spec.Dimension);
11376                 }
11377
11378                 public override string GetSignatureForError ()
11379                 {
11380                         return left.GetSignatureForError () + spec.GetSignatureForError ();
11381                 }
11382
11383                 public override object Accept (StructuralVisitor visitor)
11384                 {
11385                         return visitor.Visit (this);
11386                 }
11387         }
11388
11389         class FixedBufferPtr : Expression
11390         {
11391                 readonly Expression array;
11392
11393                 public FixedBufferPtr (Expression array, TypeSpec array_type, Location l)
11394                 {
11395                         this.type = array_type;
11396                         this.array = array;
11397                         this.loc = l;
11398                 }
11399
11400                 public override bool ContainsEmitWithAwait ()
11401                 {
11402                         throw new NotImplementedException ();
11403                 }
11404
11405                 public override Expression CreateExpressionTree (ResolveContext ec)
11406                 {
11407                         Error_PointerInsideExpressionTree (ec);
11408                         return null;
11409                 }
11410
11411                 public override void Emit(EmitContext ec)
11412                 {
11413                         array.Emit (ec);
11414                 }
11415
11416                 protected override Expression DoResolve (ResolveContext ec)
11417                 {
11418                         type = PointerContainer.MakeType (ec.Module, type);
11419                         eclass = ExprClass.Value;
11420                         return this;
11421                 }
11422         }
11423
11424
11425         //
11426         // This class is used to represent the address of an array, used
11427         // only by the Fixed statement, this generates "&a [0]" construct
11428         // for fixed (char *pa = a)
11429         //
11430         class ArrayPtr : FixedBufferPtr
11431         {
11432                 public ArrayPtr (Expression array, TypeSpec array_type, Location l):
11433                         base (array, array_type, l)
11434                 {
11435                 }
11436
11437                 public override void Emit (EmitContext ec)
11438                 {
11439                         base.Emit (ec);
11440                         
11441                         ec.EmitInt (0);
11442                         ec.Emit (OpCodes.Ldelema, ((PointerContainer) type).Element);
11443                 }
11444         }
11445
11446         //
11447         // Encapsulates a conversion rules required for array indexes
11448         //
11449         public class ArrayIndexCast : TypeCast
11450         {
11451                 public ArrayIndexCast (Expression expr, TypeSpec returnType)
11452                         : base (expr, returnType)
11453                 {
11454                         if (expr.Type == returnType) // int -> int
11455                                 throw new ArgumentException ("unnecessary array index conversion");
11456                 }
11457
11458                 public override Expression CreateExpressionTree (ResolveContext ec)
11459                 {
11460                         using (ec.Set (ResolveContext.Options.CheckedScope)) {
11461                                 return base.CreateExpressionTree (ec);
11462                         }
11463                 }
11464
11465                 public override void Emit (EmitContext ec)
11466                 {
11467                         child.Emit (ec);
11468
11469                         switch (child.Type.BuiltinType) {
11470                         case BuiltinTypeSpec.Type.UInt:
11471                                 ec.Emit (OpCodes.Conv_U);
11472                                 break;
11473                         case BuiltinTypeSpec.Type.Long:
11474                                 ec.Emit (OpCodes.Conv_Ovf_I);
11475                                 break;
11476                         case BuiltinTypeSpec.Type.ULong:
11477                                 ec.Emit (OpCodes.Conv_Ovf_I_Un);
11478                                 break;
11479                         default:
11480                                 throw new InternalErrorException ("Cannot emit cast to unknown array element type", type);
11481                         }
11482                 }
11483         }
11484
11485         //
11486         // Implements the `stackalloc' keyword
11487         //
11488         public class StackAlloc : Expression {
11489                 TypeSpec otype;
11490                 Expression texpr;
11491                 Expression count;
11492                 
11493                 public StackAlloc (Expression type, Expression count, Location l)
11494                 {
11495                         texpr = type;
11496                         this.count = count;
11497                         loc = l;
11498                 }
11499
11500                 public Expression TypeExpression {
11501                         get {
11502                                 return texpr;
11503                         }
11504                 }
11505
11506                 public Expression CountExpression {
11507                         get {
11508                                 return this.count;
11509                         }
11510                 }
11511
11512                 public override bool ContainsEmitWithAwait ()
11513                 {
11514                         return false;
11515                 }
11516
11517                 public override Expression CreateExpressionTree (ResolveContext ec)
11518                 {
11519                         throw new NotSupportedException ("ET");
11520                 }
11521
11522                 protected override Expression DoResolve (ResolveContext ec)
11523                 {
11524                         count = count.Resolve (ec);
11525                         if (count == null)
11526                                 return null;
11527                         
11528                         if (count.Type.BuiltinType != BuiltinTypeSpec.Type.UInt){
11529                                 count = Convert.ImplicitConversionRequired (ec, count, ec.BuiltinTypes.Int, loc);
11530                                 if (count == null)
11531                                         return null;
11532                         }
11533
11534                         Constant c = count as Constant;
11535                         if (c != null && c.IsNegative) {
11536                                 ec.Report.Error (247, loc, "Cannot use a negative size with stackalloc");
11537                         }
11538
11539                         if (ec.HasAny (ResolveContext.Options.CatchScope | ResolveContext.Options.FinallyScope)) {
11540                                 ec.Report.Error (255, loc, "Cannot use stackalloc in finally or catch");
11541                         }
11542
11543                         otype = texpr.ResolveAsType (ec);
11544                         if (otype == null)
11545                                 return null;
11546
11547                         if (!TypeManager.VerifyUnmanaged (ec.Module, otype, loc))
11548                                 return null;
11549
11550                         type = PointerContainer.MakeType (ec.Module, otype);
11551                         eclass = ExprClass.Value;
11552
11553                         return this;
11554                 }
11555
11556                 public override void Emit (EmitContext ec)
11557                 {
11558                         int size = BuiltinTypeSpec.GetSize (otype);
11559
11560                         count.Emit (ec);
11561
11562                         if (size == 0)
11563                                 ec.Emit (OpCodes.Sizeof, otype);
11564                         else
11565                                 ec.EmitInt (size);
11566
11567                         ec.Emit (OpCodes.Mul_Ovf_Un);
11568                         ec.Emit (OpCodes.Localloc);
11569                 }
11570
11571                 protected override void CloneTo (CloneContext clonectx, Expression t)
11572                 {
11573                         StackAlloc target = (StackAlloc) t;
11574                         target.count = count.Clone (clonectx);
11575                         target.texpr = texpr.Clone (clonectx);
11576                 }
11577                 
11578                 public override object Accept (StructuralVisitor visitor)
11579                 {
11580                         return visitor.Visit (this);
11581                 }
11582         }
11583
11584         //
11585         // An object initializer expression
11586         //
11587         public class ElementInitializer : Assign
11588         {
11589                 public readonly string Name;
11590
11591                 public ElementInitializer (string name, Expression initializer, Location loc)
11592                         : base (null, initializer, loc)
11593                 {
11594                         this.Name = name;
11595                 }
11596
11597                 public bool IsDictionaryInitializer {
11598                         get {
11599                                 return Name == null;
11600                         }
11601                 }
11602                 
11603                 protected override void CloneTo (CloneContext clonectx, Expression t)
11604                 {
11605                         ElementInitializer target = (ElementInitializer) t;
11606                         target.source = source.Clone (clonectx);
11607                 }
11608
11609                 public override Expression CreateExpressionTree (ResolveContext ec)
11610                 {
11611                         Arguments args = new Arguments (2);
11612                         FieldExpr fe = target as FieldExpr;
11613                         if (fe != null)
11614                                 args.Add (new Argument (fe.CreateTypeOfExpression ()));
11615                         else
11616                                 args.Add (new Argument (((PropertyExpr) target).CreateSetterTypeOfExpression (ec)));
11617
11618                         string mname;
11619                         Expression arg_expr;
11620                         var cinit = source as CollectionOrObjectInitializers;
11621                         if (cinit == null) {
11622                                 mname = "Bind";
11623                                 arg_expr = source.CreateExpressionTree (ec);
11624                         } else {
11625                                 mname = cinit.IsEmpty || cinit.Initializers[0] is ElementInitializer ? "MemberBind" : "ListBind";
11626                                 arg_expr = cinit.CreateExpressionTree (ec, !cinit.IsEmpty);
11627                         }
11628
11629                         args.Add (new Argument (arg_expr));
11630                         return CreateExpressionFactoryCall (ec, mname, args);
11631                 }
11632
11633                 protected override Expression DoResolve (ResolveContext ec)
11634                 {
11635                         if (source == null)
11636                                 return EmptyExpressionStatement.Instance;
11637
11638                         if (!ResolveElement (ec))
11639                                 return null;
11640
11641                         if (source is CollectionOrObjectInitializers) {
11642                                 target = target.Resolve (ec);
11643                                 if (target == null)
11644                                         return null;
11645                                 
11646                                 Expression previous = ec.CurrentInitializerVariable;
11647                                 ec.CurrentInitializerVariable = target;
11648                                 source = source.Resolve (ec);
11649                                 ec.CurrentInitializerVariable = previous;
11650                                 if (source == null)
11651                                         return null;
11652                                         
11653                                 eclass = source.eclass;
11654                                 type = source.Type;
11655
11656                                 return this;
11657                         }
11658
11659                         return base.DoResolve (ec);
11660                 }
11661         
11662                 public override void EmitStatement (EmitContext ec)
11663                 {
11664                         if (source is CollectionOrObjectInitializers)
11665                                 source.Emit (ec);
11666                         else
11667                                 base.EmitStatement (ec);
11668                 }
11669
11670                 protected virtual bool ResolveElement (ResolveContext rc)
11671                 {
11672                         var t = rc.CurrentInitializerVariable.Type;
11673                         if (t.BuiltinType == BuiltinTypeSpec.Type.Dynamic) {
11674                                 Arguments args = new Arguments (1);
11675                                 args.Add (new Argument (rc.CurrentInitializerVariable));
11676                                 target = new DynamicMemberBinder (Name, args, loc);
11677                         } else {
11678                                 var member = MemberLookup (rc, false, t, Name, 0, MemberLookupRestrictions.ExactArity, loc);
11679                                 if (member == null) {
11680                                         member = Expression.MemberLookup (rc, true, t, Name, 0, MemberLookupRestrictions.ExactArity, loc);
11681
11682                                         if (member != null) {
11683                                                 // TODO: ec.Report.SymbolRelatedToPreviousError (member);
11684                                                 ErrorIsInaccesible (rc, member.GetSignatureForError (), loc);
11685                                                 return false;
11686                                         }
11687                                 }
11688
11689                                 if (member == null) {
11690                                         Error_TypeDoesNotContainDefinition (rc, loc, t, Name);
11691                                         return false;
11692                                 }
11693
11694                                 var me = member as MemberExpr;
11695                                 if (me is EventExpr) {
11696                                         me = me.ResolveMemberAccess (rc, null, null);
11697                                 } else if (!(member is PropertyExpr || member is FieldExpr)) {
11698                                         rc.Report.Error (1913, loc,
11699                                                 "Member `{0}' cannot be initialized. An object initializer may only be used for fields, or properties",
11700                                                 member.GetSignatureForError ());
11701
11702                                         return false;
11703                                 }
11704
11705                                 if (me.IsStatic) {
11706                                         rc.Report.Error (1914, loc,
11707                                                 "Static field or property `{0}' cannot be assigned in an object initializer",
11708                                                 me.GetSignatureForError ());
11709                                 }
11710
11711                                 target = me;
11712                                 me.InstanceExpression = rc.CurrentInitializerVariable;
11713                         }
11714
11715                         return true;
11716                 }
11717         }
11718         
11719         //
11720         // A collection initializer expression
11721         //
11722         class CollectionElementInitializer : Invocation
11723         {
11724                 public class ElementInitializerArgument : Argument
11725                 {
11726                         public ElementInitializerArgument (Expression e)
11727                                 : base (e)
11728                         {
11729                         }
11730                 }
11731
11732                 sealed class AddMemberAccess : MemberAccess
11733                 {
11734                         public AddMemberAccess (Expression expr, Location loc)
11735                                 : base (expr, "Add", loc)
11736                         {
11737                         }
11738
11739                         public override void Error_TypeDoesNotContainDefinition (ResolveContext ec, TypeSpec type, string name)
11740                         {
11741                                 if (TypeManager.HasElementType (type))
11742                                         return;
11743
11744                                 base.Error_TypeDoesNotContainDefinition (ec, type, name);
11745                         }
11746                 }
11747
11748                 public CollectionElementInitializer (Expression argument)
11749                         : base (null, new Arguments (1))
11750                 {
11751                         base.arguments.Add (new ElementInitializerArgument (argument));
11752                         this.loc = argument.Location;
11753                 }
11754
11755                 public CollectionElementInitializer (List<Expression> arguments, Location loc)
11756                         : base (null, new Arguments (arguments.Count))
11757                 {
11758                         foreach (Expression e in arguments)
11759                                 base.arguments.Add (new ElementInitializerArgument (e));
11760
11761                         this.loc = loc;
11762                 }
11763
11764                 public CollectionElementInitializer (Location loc)
11765                         : base (null, null)
11766                 {
11767                         this.loc = loc;
11768                 }
11769
11770                 public override Expression CreateExpressionTree (ResolveContext ec)
11771                 {
11772                         Arguments args = new Arguments (2);
11773                         args.Add (new Argument (mg.CreateExpressionTree (ec)));
11774
11775                         var expr_initializers = new ArrayInitializer (arguments.Count, loc);
11776                         foreach (Argument a in arguments) {
11777                                 if (a.ArgType == Argument.AType.ExtensionType) {
11778                                         ec.Report.Error (8075, a.Expr.Location, "An expression tree cannot contain a collection initializer with extension method");
11779                                         continue;
11780                                 }
11781                                 expr_initializers.Add (a.CreateExpressionTree (ec));
11782                         }
11783
11784                         args.Add (new Argument (new ArrayCreation (
11785                                 CreateExpressionTypeExpression (ec, loc), expr_initializers, loc)));
11786                         return CreateExpressionFactoryCall (ec, "ElementInit", args);
11787                 }
11788
11789                 protected override void CloneTo (CloneContext clonectx, Expression t)
11790                 {
11791                         CollectionElementInitializer target = (CollectionElementInitializer) t;
11792                         if (arguments != null)
11793                                 target.arguments = arguments.Clone (clonectx);
11794                 }
11795
11796                 protected override Expression DoResolve (ResolveContext ec)
11797                 {
11798                         base.expr = new AddMemberAccess (ec.CurrentInitializerVariable, loc);
11799
11800                         return base.DoResolve (ec);
11801                 }
11802         }
11803
11804         class DictionaryElementInitializer : ElementInitializer
11805         {
11806                 readonly Arguments args;
11807
11808                 public DictionaryElementInitializer (Arguments arguments, Expression initializer, Location loc)
11809                         : base (null, initializer, loc)
11810                 {
11811                         this.args = arguments;
11812                 }
11813
11814                 public override Expression CreateExpressionTree (ResolveContext ec)
11815                 {
11816                         ec.Report.Error (8074, loc, "Expression tree cannot contain a dictionary initializer");
11817                         return null;
11818                 }
11819
11820                 protected override bool ResolveElement (ResolveContext rc)
11821                 {
11822                         var init = rc.CurrentInitializerVariable;
11823                         var type = init.Type;
11824
11825                         if (type.IsArray) {
11826                                 target = new ArrayAccess (new ElementAccess (init, args, loc), loc);
11827                                 return true;
11828                         }
11829
11830                         if (type.IsPointer) {
11831                                 target = init.MakePointerAccess (rc, type, args);
11832                                 return true;
11833                         }
11834
11835                         var indexers = MemberCache.FindMembers (type, MemberCache.IndexerNameAlias, false);
11836                         if (indexers == null && type.BuiltinType != BuiltinTypeSpec.Type.Dynamic) {
11837                                 ElementAccess.Error_CannotApplyIndexing (rc, type, loc);
11838                                 return false;
11839                         }
11840
11841                         target = new IndexerExpr (indexers, type, init, args, loc);
11842                         return true;
11843                 }
11844         }
11845         
11846         //
11847         // A block of object or collection initializers
11848         //
11849         public class CollectionOrObjectInitializers : ExpressionStatement
11850         {
11851                 IList<Expression> initializers;
11852                 bool is_collection_initialization;
11853
11854                 public CollectionOrObjectInitializers (Location loc)
11855                         : this (new Expression[0], loc)
11856                 {
11857                 }
11858
11859                 public CollectionOrObjectInitializers (IList<Expression> initializers, Location loc)
11860                 {
11861                         this.initializers = initializers;
11862                         this.loc = loc;
11863                 }
11864
11865                 public IList<Expression> Initializers {
11866                         get {
11867                                 return initializers;
11868                         }
11869                 }
11870                 
11871                 public bool IsEmpty {
11872                         get {
11873                                 return initializers.Count == 0;
11874                         }
11875                 }
11876
11877                 public bool IsCollectionInitializer {
11878                         get {
11879                                 return is_collection_initialization;
11880                         }
11881                 }
11882
11883                 protected override void CloneTo (CloneContext clonectx, Expression target)
11884                 {
11885                         CollectionOrObjectInitializers t = (CollectionOrObjectInitializers) target;
11886
11887                         t.initializers = new List<Expression> (initializers.Count);
11888                         foreach (var e in initializers)
11889                                 t.initializers.Add (e.Clone (clonectx));
11890                 }
11891
11892                 public override bool ContainsEmitWithAwait ()
11893                 {
11894                         foreach (var e in initializers) {
11895                                 if (e.ContainsEmitWithAwait ())
11896                                         return true;
11897                         }
11898
11899                         return false;
11900                 }
11901
11902                 public override Expression CreateExpressionTree (ResolveContext ec)
11903                 {
11904                         return CreateExpressionTree (ec, false);
11905                 }
11906
11907                 public Expression CreateExpressionTree (ResolveContext ec, bool inferType)
11908                 {
11909                         var expr_initializers = new ArrayInitializer (initializers.Count, loc);
11910                         foreach (Expression e in initializers) {
11911                                 Expression expr = e.CreateExpressionTree (ec);
11912                                 if (expr != null)
11913                                         expr_initializers.Add (expr);
11914                         }
11915
11916                         if (inferType)
11917                                 return new ImplicitlyTypedArrayCreation (expr_initializers, loc);
11918
11919                         return new ArrayCreation (new TypeExpression (ec.Module.PredefinedTypes.MemberBinding.Resolve (), loc), expr_initializers, loc); 
11920                 }
11921                 
11922                 protected override Expression DoResolve (ResolveContext ec)
11923                 {
11924                         List<string> element_names = null;
11925                         for (int i = 0; i < initializers.Count; ++i) {
11926                                 Expression initializer = initializers [i];
11927                                 ElementInitializer element_initializer = initializer as ElementInitializer;
11928
11929                                 if (i == 0) {
11930                                         if (element_initializer != null) {
11931                                                 element_names = new List<string> (initializers.Count);
11932                                                 if (!element_initializer.IsDictionaryInitializer)
11933                                                         element_names.Add (element_initializer.Name);
11934                                         } else if (initializer is CompletingExpression) {
11935                                                 initializer.Resolve (ec);
11936                                                 throw new InternalErrorException ("This line should never be reached");
11937                                         } else {
11938                                                 var t = ec.CurrentInitializerVariable.Type;
11939                                                 // LAMESPEC: The collection must implement IEnumerable only, no dynamic support
11940                                                 if (!t.ImplementsInterface (ec.BuiltinTypes.IEnumerable, false) && t.BuiltinType != BuiltinTypeSpec.Type.Dynamic) {
11941                                                         ec.Report.Error (1922, loc, "A field or property `{0}' cannot be initialized with a collection " +
11942                                                                 "object initializer because type `{1}' does not implement `{2}' interface",
11943                                                                 ec.CurrentInitializerVariable.GetSignatureForError (),
11944                                                                 ec.CurrentInitializerVariable.Type.GetSignatureForError (),
11945                                                                 ec.BuiltinTypes.IEnumerable.GetSignatureForError ());
11946                                                         return null;
11947                                                 }
11948                                                 is_collection_initialization = true;
11949                                         }
11950                                 } else {
11951                                         if (is_collection_initialization != (element_initializer == null)) {
11952                                                 ec.Report.Error (747, initializer.Location, "Inconsistent `{0}' member declaration",
11953                                                         is_collection_initialization ? "collection initializer" : "object initializer");
11954                                                 continue;
11955                                         }
11956
11957                                         if (!is_collection_initialization && !element_initializer.IsDictionaryInitializer) {
11958                                                 if (element_names.Contains (element_initializer.Name)) {
11959                                                         ec.Report.Error (1912, element_initializer.Location,
11960                                                                 "An object initializer includes more than one member `{0}' initialization",
11961                                                                 element_initializer.Name);
11962                                                 } else {
11963                                                         element_names.Add (element_initializer.Name);
11964                                                 }
11965                                         }
11966                                 }
11967
11968                                 Expression e = initializer.Resolve (ec);
11969                                 if (e == EmptyExpressionStatement.Instance)
11970                                         initializers.RemoveAt (i--);
11971                                 else
11972                                         initializers [i] = e;
11973                         }
11974
11975                         type = ec.CurrentInitializerVariable.Type;
11976                         if (is_collection_initialization) {
11977                                 if (TypeManager.HasElementType (type)) {
11978                                         ec.Report.Error (1925, loc, "Cannot initialize object of type `{0}' with a collection initializer",
11979                                                 type.GetSignatureForError ());
11980                                 }
11981                         }
11982
11983                         eclass = ExprClass.Variable;
11984                         return this;
11985                 }
11986
11987                 public override void Emit (EmitContext ec)
11988                 {
11989                         EmitStatement (ec);
11990                 }
11991
11992                 public override void EmitStatement (EmitContext ec)
11993                 {
11994                         foreach (ExpressionStatement e in initializers) {
11995                                 // TODO: need location region
11996                                 ec.Mark (e.Location);
11997                                 e.EmitStatement (ec);
11998                         }
11999                 }
12000
12001                 public override void FlowAnalysis (FlowAnalysisContext fc)
12002                 {
12003                         foreach (var initializer in initializers) {
12004                                 if (initializer != null)
12005                                         initializer.FlowAnalysis (fc);
12006                         }
12007                 }
12008         }
12009         
12010         //
12011         // New expression with element/object initializers
12012         //
12013         public class NewInitialize : New
12014         {
12015                 //
12016                 // This class serves as a proxy for variable initializer target instances.
12017                 // A real variable is assigned later when we resolve left side of an
12018                 // assignment
12019                 //
12020                 sealed class InitializerTargetExpression : Expression, IMemoryLocation
12021                 {
12022                         NewInitialize new_instance;
12023
12024                         public InitializerTargetExpression (NewInitialize newInstance)
12025                         {
12026                                 this.type = newInstance.type;
12027                                 this.loc = newInstance.loc;
12028                                 this.eclass = newInstance.eclass;
12029                                 this.new_instance = newInstance;
12030                         }
12031
12032                         public override bool ContainsEmitWithAwait ()
12033                         {
12034                                 return false;
12035                         }
12036
12037                         public override Expression CreateExpressionTree (ResolveContext ec)
12038                         {
12039                                 // Should not be reached
12040                                 throw new NotSupportedException ("ET");
12041                         }
12042
12043                         protected override Expression DoResolve (ResolveContext ec)
12044                         {
12045                                 return this;
12046                         }
12047
12048                         public override Expression DoResolveLValue (ResolveContext ec, Expression right_side)
12049                         {
12050                                 return this;
12051                         }
12052
12053                         public override void Emit (EmitContext ec)
12054                         {
12055                                 Expression e = (Expression) new_instance.instance;
12056                                 e.Emit (ec);
12057                         }
12058
12059                         public override Expression EmitToField (EmitContext ec)
12060                         {
12061                                 return (Expression) new_instance.instance;
12062                         }
12063
12064                         #region IMemoryLocation Members
12065
12066                         public void AddressOf (EmitContext ec, AddressOp mode)
12067                         {
12068                                 new_instance.instance.AddressOf (ec, mode);
12069                         }
12070
12071                         #endregion
12072                 }
12073
12074                 CollectionOrObjectInitializers initializers;
12075                 IMemoryLocation instance;
12076                 DynamicExpressionStatement dynamic;
12077
12078                 public NewInitialize (FullNamedExpression requested_type, Arguments arguments, CollectionOrObjectInitializers initializers, Location l)
12079                         : base (requested_type, arguments, l)
12080                 {
12081                         this.initializers = initializers;
12082                 }
12083
12084                 public CollectionOrObjectInitializers Initializers {
12085                         get {
12086                                 return initializers;
12087                         }
12088                 }
12089
12090                 protected override void CloneTo (CloneContext clonectx, Expression t)
12091                 {
12092                         base.CloneTo (clonectx, t);
12093
12094                         NewInitialize target = (NewInitialize) t;
12095                         target.initializers = (CollectionOrObjectInitializers) initializers.Clone (clonectx);
12096                 }
12097
12098                 public override bool ContainsEmitWithAwait ()
12099                 {
12100                         return base.ContainsEmitWithAwait () || initializers.ContainsEmitWithAwait ();
12101                 }
12102
12103                 public override Expression CreateExpressionTree (ResolveContext ec)
12104                 {
12105                         Arguments args = new Arguments (2);
12106                         args.Add (new Argument (base.CreateExpressionTree (ec)));
12107                         if (!initializers.IsEmpty)
12108                                 args.Add (new Argument (initializers.CreateExpressionTree (ec, initializers.IsCollectionInitializer)));
12109
12110                         return CreateExpressionFactoryCall (ec,
12111                                 initializers.IsCollectionInitializer ? "ListInit" : "MemberInit",
12112                                 args);
12113                 }
12114
12115                 protected override Expression DoResolve (ResolveContext ec)
12116                 {
12117                         Expression e = base.DoResolve (ec);
12118                         if (type == null)
12119                                 return null;
12120
12121                         if (type.IsDelegate) {
12122                                 ec.Report.Error (1958, Initializers.Location,
12123                                         "Object and collection initializers cannot be used to instantiate a delegate");
12124                         }
12125
12126                         Expression previous = ec.CurrentInitializerVariable;
12127                         ec.CurrentInitializerVariable = new InitializerTargetExpression (this);
12128                         initializers.Resolve (ec);
12129                         ec.CurrentInitializerVariable = previous;
12130
12131                         dynamic = e as DynamicExpressionStatement;
12132                         if (dynamic != null)
12133                                 return this;
12134
12135                         return e;
12136                 }
12137
12138                 public override void Emit (EmitContext ec)
12139                 {
12140                         if (method == null && TypeSpec.IsValueType (type) && initializers.Initializers.Count > 1 && ec.HasSet (BuilderContext.Options.AsyncBody) && initializers.ContainsEmitWithAwait ()) {
12141                                 var fe = ec.GetTemporaryField (type);
12142
12143                                 if (!Emit (ec, fe))
12144                                         fe.Emit (ec);
12145
12146                                 return;
12147                         }
12148
12149                         base.Emit (ec);
12150                 }
12151
12152                 public override bool Emit (EmitContext ec, IMemoryLocation target)
12153                 {
12154                         //
12155                         // Expression is initialized into temporary target then moved
12156                         // to real one for atomicity
12157                         //
12158                         IMemoryLocation temp_target = target;
12159
12160                         LocalTemporary temp = null;
12161                         bool by_ref = false;
12162                         if (!initializers.IsEmpty) {
12163                                 temp_target = target as LocalTemporary;
12164                                 if (temp_target == null)
12165                                         temp_target = target as StackFieldExpr;
12166
12167                                 if (temp_target == null) {
12168                                         var vr = target as VariableReference;
12169                                         if (vr != null && vr.IsRef) {
12170                                                 vr.EmitLoad (ec);
12171                                                 by_ref = true;
12172                                         }
12173                                 }
12174
12175                                 if (temp_target == null)
12176                                         temp_target = temp = new LocalTemporary (type);
12177                         }
12178
12179                         bool left_on_stack;
12180                         if (dynamic != null) {
12181                                 dynamic.Emit (ec);
12182                                 left_on_stack = true;
12183                         } else {
12184                                 left_on_stack = base.Emit (ec, temp_target);
12185                         }
12186
12187                         if (initializers.IsEmpty)
12188                                 return left_on_stack;
12189
12190                         StackFieldExpr sf = null;
12191
12192                         // Move a new instance (reference-type) to local temporary variable
12193                         if (left_on_stack) {
12194                                 if (by_ref) {
12195                                         temp_target = temp = new LocalTemporary (type);
12196                                 }
12197
12198                                 if (temp != null)
12199                                         temp.Store (ec);
12200
12201                                 if (ec.HasSet (BuilderContext.Options.AsyncBody) && initializers.ContainsEmitWithAwait ()) {
12202                                         if (temp == null)
12203                                                 throw new NotImplementedException ();
12204
12205                                         sf = ec.GetTemporaryField (type);
12206                                         sf.EmitAssign (ec, temp, false, false);
12207                                         temp_target = sf;
12208                                         temp.Release (ec);
12209                                         left_on_stack = false;
12210                                 }
12211                         }
12212
12213                         instance = temp_target;
12214
12215                         initializers.Emit (ec);
12216
12217                         ((Expression)temp_target).Emit (ec);
12218
12219                         if (temp != null)
12220                                 temp.Release (ec);
12221
12222                         if (sf != null)
12223                                 sf.IsAvailableForReuse = true;
12224
12225                         return true;
12226                 }
12227
12228                 protected override IMemoryLocation EmitAddressOf (EmitContext ec, AddressOp Mode)
12229                 {
12230                         instance = base.EmitAddressOf (ec, Mode);
12231
12232                         if (!initializers.IsEmpty)
12233                                 initializers.Emit (ec);
12234
12235                         return instance;
12236                 }
12237
12238                 public override void FlowAnalysis (FlowAnalysisContext fc)
12239                 {
12240                         base.FlowAnalysis (fc);
12241                         initializers.FlowAnalysis (fc);
12242                 }
12243
12244                 public override object Accept (StructuralVisitor visitor)
12245                 {
12246                         return visitor.Visit (this);
12247                 }
12248         }
12249
12250         public class NewAnonymousType : New
12251         {
12252                 static readonly AnonymousTypeParameter[] EmptyParameters = new AnonymousTypeParameter[0];
12253
12254                 List<AnonymousTypeParameter> parameters;
12255                 readonly TypeContainer parent;
12256                 AnonymousTypeClass anonymous_type;
12257
12258                 public NewAnonymousType (List<AnonymousTypeParameter> parameters, TypeContainer parent, Location loc)
12259                          : base (null, null, loc)
12260                 {
12261                         this.parameters = parameters;
12262                         this.parent = parent;
12263                 }
12264
12265                 public List<AnonymousTypeParameter> Parameters {
12266                         get {
12267                                 return this.parameters;
12268                         }
12269                 }
12270
12271                 protected override void CloneTo (CloneContext clonectx, Expression target)
12272                 {
12273                         if (parameters == null)
12274                                 return;
12275
12276                         NewAnonymousType t = (NewAnonymousType) target;
12277                         t.parameters = new List<AnonymousTypeParameter> (parameters.Count);
12278                         foreach (AnonymousTypeParameter atp in parameters)
12279                                 t.parameters.Add ((AnonymousTypeParameter) atp.Clone (clonectx));
12280                 }
12281
12282                 AnonymousTypeClass CreateAnonymousType (ResolveContext ec, IList<AnonymousTypeParameter> parameters)
12283                 {
12284                         AnonymousTypeClass type = parent.Module.GetAnonymousType (parameters);
12285                         if (type != null)
12286                                 return type;
12287
12288                         type = AnonymousTypeClass.Create (parent, parameters, loc);
12289                         if (type == null)
12290                                 return null;
12291
12292                         int errors = ec.Report.Errors;
12293                         type.CreateContainer ();
12294                         type.DefineContainer ();
12295                         type.Define ();
12296                         if ((ec.Report.Errors - errors) == 0) {
12297                                 parent.Module.AddAnonymousType (type);
12298                                 type.PrepareEmit ();
12299                         }
12300
12301                         return type;
12302                 }
12303
12304                 public override Expression CreateExpressionTree (ResolveContext ec)
12305                 {
12306                         if (parameters == null)
12307                                 return base.CreateExpressionTree (ec);
12308
12309                         var init = new ArrayInitializer (parameters.Count, loc);
12310                         foreach (var m in anonymous_type.Members) {
12311                                 var p = m as Property;
12312                                 if (p != null)
12313                                         init.Add (new TypeOfMethod (MemberCache.GetMember (type, p.Get.Spec), loc));
12314                         }
12315
12316                         var ctor_args = new ArrayInitializer (arguments.Count, loc);
12317                         foreach (Argument a in arguments)
12318                                 ctor_args.Add (a.CreateExpressionTree (ec));
12319
12320                         Arguments args = new Arguments (3);
12321                         args.Add (new Argument (new TypeOfMethod (method, loc)));
12322                         args.Add (new Argument (new ArrayCreation (CreateExpressionTypeExpression (ec, loc), ctor_args, loc)));
12323                         args.Add (new Argument (new ImplicitlyTypedArrayCreation (init, loc)));
12324
12325                         return CreateExpressionFactoryCall (ec, "New", args);
12326                 }
12327
12328                 protected override Expression DoResolve (ResolveContext ec)
12329                 {
12330                         if (ec.HasSet (ResolveContext.Options.ConstantScope)) {
12331                                 ec.Report.Error (836, loc, "Anonymous types cannot be used in this expression");
12332                                 return null;
12333                         }
12334
12335                         if (parameters == null) {
12336                                 anonymous_type = CreateAnonymousType (ec, EmptyParameters);
12337                                 RequestedType = new TypeExpression (anonymous_type.Definition, loc);
12338                                 return base.DoResolve (ec);
12339                         }
12340
12341                         bool error = false;
12342                         arguments = new Arguments (parameters.Count);
12343                         var t_args = new TypeSpec [parameters.Count];
12344                         for (int i = 0; i < parameters.Count; ++i) {
12345                                 Expression e = parameters [i].Resolve (ec);
12346                                 if (e == null) {
12347                                         error = true;
12348                                         continue;
12349                                 }
12350
12351                                 arguments.Add (new Argument (e));
12352                                 t_args [i] = e.Type;
12353                         }
12354
12355                         if (error)
12356                                 return null;
12357
12358                         anonymous_type = CreateAnonymousType (ec, parameters);
12359                         if (anonymous_type == null)
12360                                 return null;
12361
12362                         type = anonymous_type.Definition.MakeGenericType (ec.Module, t_args);
12363                         method = (MethodSpec) MemberCache.FindMember (type, MemberFilter.Constructor (null), BindingRestriction.DeclaredOnly);
12364                         eclass = ExprClass.Value;
12365                         return this;
12366                 }
12367                 
12368                 public override object Accept (StructuralVisitor visitor)
12369                 {
12370                         return visitor.Visit (this);
12371                 }
12372         }
12373
12374         public class AnonymousTypeParameter : ShimExpression
12375         {
12376                 public readonly string Name;
12377
12378                 public AnonymousTypeParameter (Expression initializer, string name, Location loc)
12379                         : base (initializer)
12380                 {
12381                         this.Name = name;
12382                         this.loc = loc;
12383                 }
12384                 
12385                 public AnonymousTypeParameter (Parameter parameter)
12386                         : base (new SimpleName (parameter.Name, parameter.Location))
12387                 {
12388                         this.Name = parameter.Name;
12389                         this.loc = parameter.Location;
12390                 }               
12391
12392                 public override bool Equals (object o)
12393                 {
12394                         AnonymousTypeParameter other = o as AnonymousTypeParameter;
12395                         return other != null && Name == other.Name;
12396                 }
12397
12398                 public override int GetHashCode ()
12399                 {
12400                         return Name.GetHashCode ();
12401                 }
12402
12403                 protected override Expression DoResolve (ResolveContext ec)
12404                 {
12405                         Expression e = expr.Resolve (ec);
12406                         if (e == null)
12407                                 return null;
12408
12409                         if (e.eclass == ExprClass.MethodGroup) {
12410                                 Error_InvalidInitializer (ec, e.ExprClassName);
12411                                 return null;
12412                         }
12413
12414                         type = e.Type;
12415                         if (type.Kind == MemberKind.Void || type == InternalType.NullLiteral || type == InternalType.AnonymousMethod || type.IsPointer) {
12416                                 Error_InvalidInitializer (ec, type.GetSignatureForError ());
12417                                 return null;
12418                         }
12419
12420                         return e;
12421                 }
12422
12423                 protected virtual void Error_InvalidInitializer (ResolveContext ec, string initializer)
12424                 {
12425                         ec.Report.Error (828, loc, "An anonymous type property `{0}' cannot be initialized with `{1}'",
12426                                 Name, initializer);
12427                 }
12428         }
12429
12430         public class CatchFilterExpression : BooleanExpression
12431         {
12432                 public CatchFilterExpression (Expression expr, Location loc)
12433                         : base (expr)
12434                 {
12435                         this.loc = loc;
12436                 }
12437         }
12438
12439         public class InterpolatedString : Expression
12440         {
12441                 readonly StringLiteral start, end;
12442                 List<Expression> interpolations;
12443                 Arguments arguments;
12444
12445                 public InterpolatedString (StringLiteral start, List<Expression> interpolations, StringLiteral end)
12446                 {
12447                         this.start = start;
12448                         this.end = end;
12449                         this.interpolations = interpolations;
12450                         loc = start.Location;
12451                 }
12452
12453                 protected override void CloneTo (CloneContext clonectx, Expression t)
12454                 {
12455                         InterpolatedString target = (InterpolatedString) t;
12456
12457                         if (interpolations != null) {
12458                                 target.interpolations = new List<Expression> ();
12459                                 foreach (var interpolation in interpolations) {
12460                                         target.interpolations.Add (interpolation.Clone (clonectx));
12461                                 }
12462                         }
12463                 }
12464
12465                 public Expression ConvertTo (ResolveContext rc, TypeSpec type)
12466                 {
12467                         var factory = rc.Module.PredefinedTypes.FormattableStringFactory.Resolve ();
12468                         if (factory == null)
12469                                 return null;
12470
12471                         var ma = new MemberAccess (new TypeExpression (factory, loc), "Create", loc);
12472                         var res = new Invocation (ma, arguments).Resolve (rc);
12473                         if (res != null && res.Type != type)
12474                                 res = Convert.ExplicitConversion (rc, res, type, loc);
12475
12476                         return res;
12477                 }
12478
12479                 public override bool ContainsEmitWithAwait ()
12480                 {
12481                         if (interpolations == null)
12482                                 return false;
12483
12484                         foreach (var expr in interpolations) {
12485                                 if (expr.ContainsEmitWithAwait ())
12486                                         return true;
12487                         }
12488
12489                         return false;
12490                 }
12491
12492                 public override Expression CreateExpressionTree (ResolveContext rc)
12493                 {
12494                         var best = ResolveBestFormatOverload (rc);
12495                         if (best == null)
12496                                 return null;
12497                         
12498                         Expression instance = new NullLiteral (loc);
12499                         var args = Arguments.CreateForExpressionTree (rc, arguments, instance, new TypeOfMethod (best, loc));
12500                         return CreateExpressionFactoryCall (rc, "Call", args);  
12501                 }
12502
12503                 protected override Expression DoResolve (ResolveContext rc)
12504                 {
12505                         string str;
12506
12507                         if (interpolations == null) {
12508                                 str = start.Value;
12509                                 arguments = new Arguments (1);
12510                         } else {
12511                                 arguments = new Arguments (interpolations.Count);
12512
12513                                 var sb = new StringBuilder (start.Value);
12514                                 for (int i = 0; i < interpolations.Count; ++i) {
12515                                         if (i % 2 == 0) {
12516                                                 sb.Append ('{').Append (i / 2);
12517                                                 var isi = (InterpolatedStringInsert)interpolations [i];
12518                                                 if (isi.Alignment != null) {
12519                                                         sb.Append (',');
12520                                                         var value = isi.ResolveAligment (rc);
12521                                                         if (value != null)
12522                                                                 sb.Append (value.Value);
12523                                                 }
12524
12525                                                 if (isi.Format != null) {
12526                                                         sb.Append (':');
12527                                                         sb.Append (isi.Format);
12528                                                 }
12529
12530                                                 sb.Append ('}');
12531                                                 arguments.Add (new Argument (isi.Resolve (rc)));
12532                                         } else {
12533                                                 sb.Append (((StringLiteral)interpolations [i]).Value);
12534                                         }
12535                                 }
12536
12537                                 sb.Append (end.Value);
12538                                 str = sb.ToString ();
12539                         }
12540
12541                         arguments.Insert (0, new Argument (new StringLiteral (rc.BuiltinTypes, str, start.Location)));
12542
12543                         eclass = ExprClass.Value;
12544                         type = rc.BuiltinTypes.String;
12545                         return this;
12546                 }
12547
12548                 public override void Emit (EmitContext ec)
12549                 {
12550                         // No interpolation, convert to simple string result (needs to match string.Format unescaping)
12551                         if (interpolations == null) {
12552                                 var str = start.Value.Replace ("{{", "{").Replace ("}}", "}");
12553                                 if (str != start.Value)
12554                                         new StringConstant (ec.BuiltinTypes, str, loc).Emit (ec);
12555                                 else
12556                                         start.Emit (ec);
12557
12558                                 return;
12559                         }
12560
12561                         var best = ResolveBestFormatOverload (new ResolveContext (ec.MemberContext));
12562                         if (best == null)
12563                                 return;
12564
12565                         var ca = new CallEmitter ();
12566                         ca.Emit (ec, best, arguments, loc);
12567                 }
12568
12569                 public override void FlowAnalysis (FlowAnalysisContext fc)
12570                 {
12571                         if (interpolations != null) {
12572                                 foreach (var expr in interpolations) {
12573                                         expr.FlowAnalysis (fc);
12574                                 }
12575                         }
12576                 }
12577
12578                 MethodSpec ResolveBestFormatOverload (ResolveContext rc)
12579                 {
12580                         var members = MemberCache.FindMembers (rc.BuiltinTypes.String, "Format", true);
12581                         var res = new OverloadResolver (members, OverloadResolver.Restrictions.NoBaseMembers, loc);
12582                         return res.ResolveMember<MethodSpec> (rc, ref arguments);
12583                 }
12584         }
12585
12586         public class InterpolatedStringInsert : CompositeExpression
12587         {
12588                 public InterpolatedStringInsert (Expression expr)
12589                         : base (expr)
12590                 {
12591                 }
12592
12593                 public Expression Alignment { get; set; }
12594                 public string Format { get; set; }
12595
12596                 protected override void CloneTo (CloneContext clonectx, Expression t)
12597                 {
12598                         var target = (InterpolatedStringInsert)t;
12599                         target.expr = expr.Clone (clonectx);
12600                         if (Alignment != null)
12601                                 target.Alignment = Alignment.Clone (clonectx);
12602                 }
12603
12604                 protected override Expression DoResolve (ResolveContext rc)
12605                 {
12606                         var expr = base.DoResolve (rc);
12607                         if (expr == null)
12608                                 return null;
12609
12610                         //
12611                         // For better error reporting, assumes the built-in implementation uses object
12612                         // as argument(s)
12613                         //
12614                         return Convert.ImplicitConversionRequired (rc, expr, rc.BuiltinTypes.Object, expr.Location);
12615                 }
12616
12617                 public override void FlowAnalysis (FlowAnalysisContext fc)
12618                 {
12619                         Child.FlowAnalysis (fc);
12620                 }
12621
12622                 public int? ResolveAligment (ResolveContext rc)
12623                 {
12624                         var c = Alignment.ResolveLabelConstant (rc);
12625                         if (c == null)
12626                                 return null;
12627                         
12628                         c = c.ImplicitConversionRequired (rc, rc.BuiltinTypes.Int);
12629                         if (c == null)
12630                                 return null;
12631                         
12632                         var value = (int) c.GetValueAsLong ();
12633                         if (value > 32767 || value < -32767) {
12634                                 rc.Report.Warning (8094, 1, Alignment.Location, 
12635                                         "Alignment value has a magnitude greater than 32767 and may result in a large formatted string");
12636                         }
12637
12638                         return value;
12639                 }
12640         }
12641 }