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