BindingFlags.Public needed here as Exception.HResult is now public in .NET 4.5. This...
[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, loc);
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), 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.TryReduce (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), b.loc).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, Location loc)
2206                         : this (oper, left, right, loc)
2207                 {
2208                         if (isCompound)
2209                                 state |= State.Compound;
2210                 }
2211
2212                 public Binary (Operator oper, Expression left, Expression right, Location loc)
2213                 {
2214                         this.oper = oper;
2215                         this.left = left;
2216                         this.right = right;
2217                         this.loc = loc;
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, loc).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.TryReduce (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, loc);
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, loc).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 && Convert.ImplicitConversion (ec, false_expr, true_type, loc) != null) {
4634                                                 ec.Report.Error (172, true_expr.Location,
4635                                                         "Type of conditional expression cannot be determined as `{0}' and `{1}' convert implicitly to each other",
4636                                                                 true_type.GetSignatureForError (), false_type.GetSignatureForError ());
4637                                                 return null;
4638                                         }
4639
4640                                         true_expr = conv;
4641                                 } else if ((conv = Convert.ImplicitConversion (ec, false_expr, true_type, loc)) != null) {
4642                                         false_expr = conv;
4643                                 } else {
4644                                         ec.Report.Error (173, true_expr.Location,
4645                                                 "Type of conditional expression cannot be determined because there is no implicit conversion between `{0}' and `{1}'",
4646                                                 TypeManager.CSharpName (true_type), TypeManager.CSharpName (false_type));
4647                                         return null;
4648                                 }
4649                         }                       
4650
4651                         if (c != null) {
4652                                 bool is_false = c.IsDefaultValue;
4653
4654                                 //
4655                                 // Don't issue the warning for constant expressions
4656                                 //
4657                                 if (!(is_false ? true_expr is Constant : false_expr is Constant)) {
4658                                         ec.Report.Warning (429, 4, is_false ? true_expr.Location : false_expr.Location,
4659                                                 "Unreachable expression code detected");
4660                                 }
4661
4662                                 return ReducedExpression.Create (
4663                                         is_false ? false_expr : true_expr, this,
4664                                         false_expr is Constant && true_expr is Constant).Resolve (ec);
4665                         }
4666
4667                         return this;
4668                 }
4669
4670                 public override void Emit (EmitContext ec)
4671                 {
4672                         Label false_target = ec.DefineLabel ();
4673                         Label end_target = ec.DefineLabel ();
4674
4675                         expr.EmitBranchable (ec, false_target, false);
4676                         true_expr.Emit (ec);
4677
4678                         ec.Emit (OpCodes.Br, end_target);
4679                         ec.MarkLabel (false_target);
4680                         false_expr.Emit (ec);
4681                         ec.MarkLabel (end_target);
4682                 }
4683
4684                 protected override void CloneTo (CloneContext clonectx, Expression t)
4685                 {
4686                         Conditional target = (Conditional) t;
4687
4688                         target.expr = expr.Clone (clonectx);
4689                         target.true_expr = true_expr.Clone (clonectx);
4690                         target.false_expr = false_expr.Clone (clonectx);
4691                 }
4692         }
4693
4694         public abstract class VariableReference : Expression, IAssignMethod, IMemoryLocation, IVariableReference
4695         {
4696                 LocalTemporary temp;
4697
4698                 #region Abstract
4699                 public abstract HoistedVariable GetHoistedVariable (AnonymousExpression ae);
4700                 public abstract void SetHasAddressTaken ();
4701                 public abstract void VerifyAssigned (ResolveContext rc);
4702
4703                 public abstract bool IsLockedByStatement { get; set; }
4704
4705                 public abstract bool IsFixed { get; }
4706                 public abstract bool IsRef { get; }
4707                 public abstract string Name { get; }
4708
4709                 //
4710                 // Variable IL data, it has to be protected to encapsulate hoisted variables
4711                 //
4712                 protected abstract ILocalVariable Variable { get; }
4713                 
4714                 //
4715                 // Variable flow-analysis data
4716                 //
4717                 public abstract VariableInfo VariableInfo { get; }
4718                 #endregion
4719
4720                 public virtual void AddressOf (EmitContext ec, AddressOp mode)
4721                 {
4722                         HoistedVariable hv = GetHoistedVariable (ec);
4723                         if (hv != null) {
4724                                 hv.AddressOf (ec, mode);
4725                                 return;
4726                         }
4727
4728                         Variable.EmitAddressOf (ec);
4729                 }
4730
4731                 public override bool ContainsEmitWithAwait ()
4732                 {
4733                         return false;
4734                 }
4735
4736                 public override Expression CreateExpressionTree (ResolveContext ec)
4737                 {
4738                         HoistedVariable hv = GetHoistedVariable (ec);
4739                         if (hv != null)
4740                                 return hv.CreateExpressionTree ();
4741
4742                         Arguments arg = new Arguments (1);
4743                         arg.Add (new Argument (this));
4744                         return CreateExpressionFactoryCall (ec, "Constant", arg);
4745                 }
4746
4747                 public override Expression DoResolveLValue (ResolveContext rc, Expression right_side)
4748                 {
4749                         if (IsLockedByStatement) {
4750                                 rc.Report.Warning (728, 2, loc,
4751                                         "Possibly incorrect assignment to `{0}' which is the argument to a using or lock statement",
4752                                         Name);
4753                         }
4754
4755                         return this;
4756                 }
4757
4758                 public override void Emit (EmitContext ec)
4759                 {
4760                         Emit (ec, false);
4761                 }
4762
4763                 public override void EmitSideEffect (EmitContext ec)
4764                 {
4765                         // do nothing
4766                 }
4767
4768                 //
4769                 // This method is used by parameters that are references, that are
4770                 // being passed as references:  we only want to pass the pointer (that
4771                 // is already stored in the parameter, not the address of the pointer,
4772                 // and not the value of the variable).
4773                 //
4774                 public void EmitLoad (EmitContext ec)
4775                 {
4776                         Variable.Emit (ec);
4777                 }
4778
4779                 public void Emit (EmitContext ec, bool leave_copy)
4780                 {
4781                         HoistedVariable hv = GetHoistedVariable (ec);
4782                         if (hv != null) {
4783                                 hv.Emit (ec, leave_copy);
4784                                 return;
4785                         }
4786
4787                         EmitLoad (ec);
4788
4789                         if (IsRef) {
4790                                 //
4791                                 // If we are a reference, we loaded on the stack a pointer
4792                                 // Now lets load the real value
4793                                 //
4794                                 ec.EmitLoadFromPtr (type);
4795                         }
4796
4797                         if (leave_copy) {
4798                                 ec.Emit (OpCodes.Dup);
4799
4800                                 if (IsRef) {
4801                                         temp = new LocalTemporary (Type);
4802                                         temp.Store (ec);
4803                                 }
4804                         }
4805                 }
4806
4807                 public void EmitAssign (EmitContext ec, Expression source, bool leave_copy,
4808                                         bool prepare_for_load)
4809                 {
4810                         HoistedVariable hv = GetHoistedVariable (ec);
4811                         if (hv != null) {
4812                                 hv.EmitAssign (ec, source, leave_copy, prepare_for_load);
4813                                 return;
4814                         }
4815
4816                         New n_source = source as New;
4817                         if (n_source != null) {
4818                                 if (!n_source.Emit (ec, this)) {
4819                                         if (leave_copy) {
4820                                                 EmitLoad (ec);
4821                                                 if (IsRef)
4822                                                         ec.EmitLoadFromPtr (type);
4823                                         }
4824                                         return;
4825                                 }
4826                         } else {
4827                                 if (IsRef)
4828                                         EmitLoad (ec);
4829
4830                                 source.Emit (ec);
4831                         }
4832
4833                         if (leave_copy) {
4834                                 ec.Emit (OpCodes.Dup);
4835                                 if (IsRef) {
4836                                         temp = new LocalTemporary (Type);
4837                                         temp.Store (ec);
4838                                 }
4839                         }
4840
4841                         if (IsRef)
4842                                 ec.EmitStoreFromPtr (type);
4843                         else
4844                                 Variable.EmitAssign (ec);
4845
4846                         if (temp != null) {
4847                                 temp.Emit (ec);
4848                                 temp.Release (ec);
4849                         }
4850                 }
4851
4852                 public override Expression EmitToField (EmitContext ec)
4853                 {
4854                         HoistedVariable hv = GetHoistedVariable (ec);
4855                         if (hv != null) {
4856                                 return hv.EmitToField (ec);
4857                         }
4858
4859                         return base.EmitToField (ec);
4860                 }
4861
4862                 public HoistedVariable GetHoistedVariable (ResolveContext rc)
4863                 {
4864                         return GetHoistedVariable (rc.CurrentAnonymousMethod);
4865                 }
4866
4867                 public HoistedVariable GetHoistedVariable (EmitContext ec)
4868                 {
4869                         return GetHoistedVariable (ec.CurrentAnonymousMethod);
4870                 }
4871
4872                 public override string GetSignatureForError ()
4873                 {
4874                         return Name;
4875                 }
4876
4877                 public bool IsHoisted {
4878                         get { return GetHoistedVariable ((AnonymousExpression) null) != null; }
4879                 }
4880         }
4881
4882         //
4883         // Resolved reference to a local variable
4884         //
4885         public class LocalVariableReference : VariableReference
4886         {
4887                 public LocalVariable local_info;
4888
4889                 public LocalVariableReference (LocalVariable li, Location l)
4890                 {
4891                         this.local_info = li;
4892                         loc = l;
4893                 }
4894
4895                 public override VariableInfo VariableInfo {
4896                         get { return local_info.VariableInfo; }
4897                 }
4898
4899                 public override HoistedVariable GetHoistedVariable (AnonymousExpression ae)
4900                 {
4901                         return local_info.HoistedVariant;
4902                 }
4903
4904                 #region Properties
4905
4906                 //              
4907                 // A local variable is always fixed
4908                 //
4909                 public override bool IsFixed {
4910                         get {
4911                                 return true;
4912                         }
4913                 }
4914
4915                 public override bool IsLockedByStatement {
4916                         get {
4917                                 return local_info.IsLocked;
4918                         }
4919                         set {
4920                                 local_info.IsLocked = value;
4921                         }
4922                 }
4923
4924                 public override bool IsRef {
4925                         get { return false; }
4926                 }
4927
4928                 public override string Name {
4929                         get { return local_info.Name; }
4930                 }
4931
4932                 #endregion
4933
4934                 public override void VerifyAssigned (ResolveContext rc)
4935                 {
4936                         VariableInfo variable_info = local_info.VariableInfo;
4937                         if (variable_info == null)
4938                                 return;
4939
4940                         if (variable_info.IsAssigned (rc))
4941                                 return;
4942
4943                         rc.Report.Error (165, loc, "Use of unassigned local variable `{0}'", Name);
4944                         variable_info.SetAssigned (rc);
4945                 }
4946
4947                 public override void SetHasAddressTaken ()
4948                 {
4949                         local_info.SetHasAddressTaken ();
4950                 }
4951
4952                 void DoResolveBase (ResolveContext ec)
4953                 {
4954                         //
4955                         // If we are referencing a variable from the external block
4956                         // flag it for capturing
4957                         //
4958                         if (ec.MustCaptureVariable (local_info)) {
4959                                 if (local_info.AddressTaken) {
4960                                         AnonymousMethodExpression.Error_AddressOfCapturedVar (ec, this, loc);
4961                                 } else if (local_info.IsFixed) {
4962                                         ec.Report.Error (1764, loc,
4963                                                 "Cannot use fixed local `{0}' inside an anonymous method, lambda expression or query expression",
4964                                                 GetSignatureForError ());
4965                                 }
4966
4967                                 if (ec.IsVariableCapturingRequired) {
4968                                         AnonymousMethodStorey storey = local_info.Block.Explicit.CreateAnonymousMethodStorey (ec);
4969                                         storey.CaptureLocalVariable (ec, local_info);
4970                                 }
4971                         }
4972
4973                         eclass = ExprClass.Variable;
4974                         type = local_info.Type;
4975                 }
4976
4977                 protected override Expression DoResolve (ResolveContext ec)
4978                 {
4979                         local_info.SetIsUsed ();
4980
4981                         VerifyAssigned (ec);
4982
4983                         DoResolveBase (ec);
4984                         return this;
4985                 }
4986
4987                 public override Expression DoResolveLValue (ResolveContext ec, Expression rhs)
4988                 {
4989                         //
4990                         // Don't be too pedantic when variable is used as out param or for some broken code
4991                         // which uses property/indexer access to run some initialization
4992                         //
4993                         if (rhs == EmptyExpression.OutAccess || rhs.eclass == ExprClass.PropertyAccess || rhs.eclass == ExprClass.IndexerAccess)
4994                                 local_info.SetIsUsed ();
4995
4996                         if (local_info.IsReadonly && !ec.HasAny (ResolveContext.Options.FieldInitializerScope | ResolveContext.Options.UsingInitializerScope)) {
4997                                 int code;
4998                                 string msg;
4999                                 if (rhs == EmptyExpression.OutAccess) {
5000                                         code = 1657; msg = "Cannot pass `{0}' as a ref or out argument because it is a `{1}'";
5001                                 } else if (rhs == EmptyExpression.LValueMemberAccess) {
5002                                         code = 1654; msg = "Cannot assign to members of `{0}' because it is a `{1}'";
5003                                 } else if (rhs == EmptyExpression.LValueMemberOutAccess) {
5004                                         code = 1655; msg = "Cannot pass members of `{0}' as ref or out arguments because it is a `{1}'";
5005                                 } else if (rhs == EmptyExpression.UnaryAddress) {
5006                                         code = 459; msg = "Cannot take the address of {1} `{0}'";
5007                                 } else {
5008                                         code = 1656; msg = "Cannot assign to `{0}' because it is a `{1}'";
5009                                 }
5010                                 ec.Report.Error (code, loc, msg, Name, local_info.GetReadOnlyContext ());
5011                         } else if (VariableInfo != null) {
5012                                 VariableInfo.SetAssigned (ec);
5013                         }
5014
5015                         if (eclass == ExprClass.Unresolved)
5016                                 DoResolveBase (ec);
5017
5018                         return base.DoResolveLValue (ec, rhs);
5019                 }
5020
5021                 public override int GetHashCode ()
5022                 {
5023                         return local_info.GetHashCode ();
5024                 }
5025
5026                 public override bool Equals (object obj)
5027                 {
5028                         LocalVariableReference lvr = obj as LocalVariableReference;
5029                         if (lvr == null)
5030                                 return false;
5031
5032                         return local_info == lvr.local_info;
5033                 }
5034
5035                 protected override ILocalVariable Variable {
5036                         get { return local_info; }
5037                 }
5038
5039                 public override string ToString ()
5040                 {
5041                         return String.Format ("{0} ({1}:{2})", GetType (), Name, loc);
5042                 }
5043
5044                 protected override void CloneTo (CloneContext clonectx, Expression t)
5045                 {
5046                         // Nothing
5047                 }
5048         }
5049
5050         /// <summary>
5051         ///   This represents a reference to a parameter in the intermediate
5052         ///   representation.
5053         /// </summary>
5054         public class ParameterReference : VariableReference
5055         {
5056                 protected ParametersBlock.ParameterInfo pi;
5057
5058                 public ParameterReference (ParametersBlock.ParameterInfo pi, Location loc)
5059                 {
5060                         this.pi = pi;
5061                         this.loc = loc;
5062                 }
5063
5064                 #region Properties
5065
5066                 public override bool IsLockedByStatement {
5067                         get {
5068                                 return pi.IsLocked;
5069                         }
5070                         set     {
5071                                 pi.IsLocked = value;
5072                         }
5073                 }
5074
5075                 public override bool IsRef {
5076                         get { return (pi.Parameter.ModFlags & Parameter.Modifier.RefOutMask) != 0; }
5077                 }
5078
5079                 bool HasOutModifier {
5080                         get { return (pi.Parameter.ModFlags & Parameter.Modifier.OUT) != 0; }
5081                 }
5082
5083                 public override HoistedVariable GetHoistedVariable (AnonymousExpression ae)
5084                 {
5085                         return pi.Parameter.HoistedVariant;
5086                 }
5087
5088                 //
5089                 // A ref or out parameter is classified as a moveable variable, even 
5090                 // if the argument given for the parameter is a fixed variable
5091                 //              
5092                 public override bool IsFixed {
5093                         get { return !IsRef; }
5094                 }
5095
5096                 public override string Name {
5097                         get { return Parameter.Name; }
5098                 }
5099
5100                 public Parameter Parameter {
5101                         get { return pi.Parameter; }
5102                 }
5103
5104                 public override VariableInfo VariableInfo {
5105                         get { return pi.VariableInfo; }
5106                 }
5107
5108                 protected override ILocalVariable Variable {
5109                         get { return Parameter; }
5110                 }
5111
5112                 #endregion
5113
5114                 public override void AddressOf (EmitContext ec, AddressOp mode)
5115                 {
5116                         //
5117                         // ParameterReferences might already be a reference
5118                         //
5119                         if (IsRef) {
5120                                 EmitLoad (ec);
5121                                 return;
5122                         }
5123
5124                         base.AddressOf (ec, mode);
5125                 }
5126
5127                 public override void SetHasAddressTaken ()
5128                 {
5129                         Parameter.HasAddressTaken = true;
5130                 }
5131
5132                 void SetAssigned (ResolveContext ec)
5133                 {
5134                         if (HasOutModifier && ec.DoFlowAnalysis)
5135                                 ec.CurrentBranching.SetAssigned (VariableInfo);
5136                 }
5137
5138                 bool DoResolveBase (ResolveContext ec)
5139                 {
5140                         if (eclass != ExprClass.Unresolved)
5141                                 return true;
5142
5143                         type = pi.ParameterType;
5144                         eclass = ExprClass.Variable;
5145
5146                         //
5147                         // If we are referencing a parameter from the external block
5148                         // flag it for capturing
5149                         //
5150                         if (ec.MustCaptureVariable (pi)) {
5151                                 if (Parameter.HasAddressTaken)
5152                                         AnonymousMethodExpression.Error_AddressOfCapturedVar (ec, this, loc);
5153
5154                                 if (IsRef) {
5155                                         ec.Report.Error (1628, loc,
5156                                                 "Parameter `{0}' cannot be used inside `{1}' when using `ref' or `out' modifier",
5157                                                 Name, ec.CurrentAnonymousMethod.ContainerType);
5158                                 }
5159
5160                                 if (ec.IsVariableCapturingRequired && !pi.Block.ParametersBlock.IsExpressionTree) {
5161                                         AnonymousMethodStorey storey = pi.Block.Explicit.CreateAnonymousMethodStorey (ec);
5162                                         storey.CaptureParameter (ec, pi, this);
5163                                 }
5164                         }
5165
5166                         return true;
5167                 }
5168
5169                 public override int GetHashCode ()
5170                 {
5171                         return Name.GetHashCode ();
5172                 }
5173
5174                 public override bool Equals (object obj)
5175                 {
5176                         ParameterReference pr = obj as ParameterReference;
5177                         if (pr == null)
5178                                 return false;
5179
5180                         return Name == pr.Name;
5181                 }
5182         
5183                 protected override void CloneTo (CloneContext clonectx, Expression target)
5184                 {
5185                         // Nothing to clone
5186                         return;
5187                 }
5188
5189                 public override Expression CreateExpressionTree (ResolveContext ec)
5190                 {
5191                         HoistedVariable hv = GetHoistedVariable (ec);
5192                         if (hv != null)
5193                                 return hv.CreateExpressionTree ();
5194
5195                         return Parameter.ExpressionTreeVariableReference ();
5196                 }
5197
5198                 //
5199                 // Notice that for ref/out parameters, the type exposed is not the
5200                 // same type exposed externally.
5201                 //
5202                 // for "ref int a":
5203                 //   externally we expose "int&"
5204                 //   here we expose       "int".
5205                 //
5206                 // We record this in "is_ref".  This means that the type system can treat
5207                 // the type as it is expected, but when we generate the code, we generate
5208                 // the alternate kind of code.
5209                 //
5210                 protected override Expression DoResolve (ResolveContext ec)
5211                 {
5212                         if (!DoResolveBase (ec))
5213                                 return null;
5214
5215                         VerifyAssigned (ec);
5216                         return this;
5217                 }
5218
5219                 public override Expression DoResolveLValue (ResolveContext ec, Expression right_side)
5220                 {
5221                         if (!DoResolveBase (ec))
5222                                 return null;
5223
5224                         SetAssigned (ec);
5225                         return base.DoResolveLValue (ec, right_side);
5226                 }
5227
5228                 public override void VerifyAssigned (ResolveContext rc)
5229                 {
5230                         // HACK: Variables are not captured in probing mode
5231                         if (rc.IsInProbingMode)
5232                                 return;
5233
5234                         if (HasOutModifier && !VariableInfo.IsAssigned (rc)) {
5235                                 rc.Report.Error (269, loc, "Use of unassigned out parameter `{0}'", Name);
5236                         }
5237                 }
5238         }
5239         
5240         /// <summary>
5241         ///   Invocation of methods or delegates.
5242         /// </summary>
5243         public class Invocation : ExpressionStatement
5244         {
5245                 protected Arguments arguments;
5246                 protected Expression expr;
5247                 protected MethodGroupExpr mg;
5248                 
5249                 public Invocation (Expression expr, Arguments arguments)
5250                 {
5251                         this.expr = expr;               
5252                         this.arguments = arguments;
5253                         if (expr != null)
5254                                 loc = expr.Location;
5255                 }
5256
5257                 #region Properties
5258                 public Arguments Arguments {
5259                         get {
5260                                 return arguments;
5261                         }
5262                 }
5263                 
5264                 public Expression Exp {
5265                         get {
5266                                 return expr;
5267                         }
5268                 }
5269
5270                 public MethodGroupExpr MethodGroup {
5271                         get {
5272                                 return mg;
5273                         }
5274                 }
5275                 #endregion
5276
5277                 protected override void CloneTo (CloneContext clonectx, Expression t)
5278                 {
5279                         Invocation target = (Invocation) t;
5280
5281                         if (arguments != null)
5282                                 target.arguments = arguments.Clone (clonectx);
5283
5284                         target.expr = expr.Clone (clonectx);
5285                 }
5286
5287                 public override bool ContainsEmitWithAwait ()
5288                 {
5289                         if (arguments != null && arguments.ContainsEmitWithAwait ())
5290                                 return true;
5291
5292                         return mg.ContainsEmitWithAwait ();
5293                 }
5294
5295                 public override Expression CreateExpressionTree (ResolveContext ec)
5296                 {
5297                         Expression instance = mg.IsInstance ?
5298                                 mg.InstanceExpression.CreateExpressionTree (ec) :
5299                                 new NullLiteral (loc);
5300
5301                         var args = Arguments.CreateForExpressionTree (ec, arguments,
5302                                 instance,
5303                                 mg.CreateExpressionTree (ec));
5304
5305                         return CreateExpressionFactoryCall (ec, "Call", args);
5306                 }
5307
5308                 protected override Expression DoResolve (ResolveContext ec)
5309                 {
5310                         Expression member_expr;
5311                         var atn = expr as ATypeNameExpression;
5312                         if (atn != null) {
5313                                 member_expr = atn.LookupNameExpression (ec, MemberLookupRestrictions.InvocableOnly | MemberLookupRestrictions.ReadAccess);
5314                                 if (member_expr != null)
5315                                         member_expr = member_expr.Resolve (ec);
5316                         } else {
5317                                 member_expr = expr.Resolve (ec, ResolveFlags.VariableOrValue | ResolveFlags.MethodGroup);
5318                         }
5319
5320                         if (member_expr == null)
5321                                 return null;
5322
5323                         //
5324                         // Next, evaluate all the expressions in the argument list
5325                         //
5326                         bool dynamic_arg = false;
5327                         if (arguments != null)
5328                                 arguments.Resolve (ec, out dynamic_arg);
5329
5330                         TypeSpec expr_type = member_expr.Type;
5331                         if (expr_type.BuiltinType == BuiltinTypeSpec.Type.Dynamic)
5332                                 return DoResolveDynamic (ec, member_expr);
5333
5334                         mg = member_expr as MethodGroupExpr;
5335                         Expression invoke = null;
5336
5337                         if (mg == null) {
5338                                 if (expr_type != null && expr_type.IsDelegate) {
5339                                         invoke = new DelegateInvocation (member_expr, arguments, loc);
5340                                         invoke = invoke.Resolve (ec);
5341                                         if (invoke == null || !dynamic_arg)
5342                                                 return invoke;
5343                                 } else {
5344                                         if (member_expr is RuntimeValueExpression) {
5345                                                 ec.Report.Error (Report.RuntimeErrorId, loc, "Cannot invoke a non-delegate type `{0}'",
5346                                                         member_expr.Type.GetSignatureForError ()); ;
5347                                                 return null;
5348                                         }
5349
5350                                         MemberExpr me = member_expr as MemberExpr;
5351                                         if (me == null) {
5352                                                 member_expr.Error_UnexpectedKind (ec, ResolveFlags.MethodGroup, loc);
5353                                                 return null;
5354                                         }
5355
5356                                         ec.Report.Error (1955, loc, "The member `{0}' cannot be used as method or delegate",
5357                                                         member_expr.GetSignatureForError ());
5358                                         return null;
5359                                 }
5360                         }
5361
5362                         if (invoke == null) {
5363                                 mg = DoResolveOverload (ec);
5364                                 if (mg == null)
5365                                         return null;
5366                         }
5367
5368                         if (dynamic_arg)
5369                                 return DoResolveDynamic (ec, member_expr);
5370
5371                         var method = mg.BestCandidate;
5372                         type = mg.BestCandidateReturnType;
5373                 
5374                         if (arguments == null && method.DeclaringType.BuiltinType == BuiltinTypeSpec.Type.Object && method.Name == Destructor.MetadataName) {
5375                                 if (mg.IsBase)
5376                                         ec.Report.Error (250, loc, "Do not directly call your base class Finalize method. It is called automatically from your destructor");
5377                                 else
5378                                         ec.Report.Error (245, loc, "Destructors and object.Finalize cannot be called directly. Consider calling IDisposable.Dispose if available");
5379                                 return null;
5380                         }
5381
5382                         IsSpecialMethodInvocation (ec, method, loc);
5383                         
5384                         eclass = ExprClass.Value;
5385                         return this;
5386                 }
5387
5388                 protected virtual Expression DoResolveDynamic (ResolveContext ec, Expression memberExpr)
5389                 {
5390                         Arguments args;
5391                         DynamicMemberBinder dmb = memberExpr as DynamicMemberBinder;
5392                         if (dmb != null) {
5393                                 args = dmb.Arguments;
5394                                 if (arguments != null)
5395                                         args.AddRange (arguments);
5396                         } else if (mg == null) {
5397                                 if (arguments == null)
5398                                         args = new Arguments (1);
5399                                 else
5400                                         args = arguments;
5401
5402                                 args.Insert (0, new Argument (memberExpr));
5403                                 this.expr = null;
5404                         } else {
5405                                 if (mg.IsBase) {
5406                                         ec.Report.Error (1971, loc,
5407                                                 "The base call to method `{0}' cannot be dynamically dispatched. Consider casting the dynamic arguments or eliminating the base access",
5408                                                 mg.Name);
5409                                         return null;
5410                                 }
5411
5412                                 if (arguments == null)
5413                                         args = new Arguments (1);
5414                                 else
5415                                         args = arguments;
5416
5417                                 MemberAccess ma = expr as MemberAccess;
5418                                 if (ma != null) {
5419                                         var left_type = ma.LeftExpression as TypeExpr;
5420                                         if (left_type != null) {
5421                                                 args.Insert (0, new Argument (new TypeOf (left_type.Type, loc).Resolve (ec), Argument.AType.DynamicTypeName));
5422                                         } else {
5423                                                 //
5424                                                 // Any value type has to be pass as by-ref to get back the same
5425                                                 // instance on which the member was called
5426                                                 //
5427                                                 var mod = ma.LeftExpression is IMemoryLocation && TypeSpec.IsValueType (ma.LeftExpression.Type) ?
5428                                                         Argument.AType.Ref : Argument.AType.None;
5429                                                 args.Insert (0, new Argument (ma.LeftExpression.Resolve (ec), mod));
5430                                         }
5431                                 } else {        // is SimpleName
5432                                         if (ec.IsStatic) {
5433                                                 args.Insert (0, new Argument (new TypeOf (ec.CurrentType, loc).Resolve (ec), Argument.AType.DynamicTypeName));
5434                                         } else {
5435                                                 args.Insert (0, new Argument (new This (loc).Resolve (ec)));
5436                                         }
5437                                 }
5438                         }
5439
5440                         return new DynamicInvocation (expr as ATypeNameExpression, args, loc).Resolve (ec);
5441                 }
5442
5443                 protected virtual MethodGroupExpr DoResolveOverload (ResolveContext ec)
5444                 {
5445                         return mg.OverloadResolve (ec, ref arguments, null, OverloadResolver.Restrictions.None);
5446                 }
5447
5448                 public override string GetSignatureForError ()
5449                 {
5450                         return mg.GetSignatureForError ();
5451                 }
5452
5453                 //
5454                 // If a member is a method or event, or if it is a constant, field or property of either a delegate type
5455                 // or the type dynamic, then the member is invocable
5456                 //
5457                 public static bool IsMemberInvocable (MemberSpec member)
5458                 {
5459                         switch (member.Kind) {
5460                         case MemberKind.Event:
5461                                 return true;
5462                         case MemberKind.Field:
5463                         case MemberKind.Property:
5464                                 var m = member as IInterfaceMemberSpec;
5465                                 return m.MemberType.IsDelegate || m.MemberType.BuiltinType == BuiltinTypeSpec.Type.Dynamic;
5466                         default:
5467                                 return false;
5468                         }
5469                 }
5470
5471                 public static bool IsSpecialMethodInvocation (ResolveContext ec, MethodSpec method, Location loc)
5472                 {
5473                         if (!method.IsReservedMethod)
5474                                 return false;
5475
5476                         if (ec.HasSet (ResolveContext.Options.InvokeSpecialName) || ec.CurrentMemberDefinition.IsCompilerGenerated)
5477                                 return false;
5478
5479                         ec.Report.SymbolRelatedToPreviousError (method);
5480                         ec.Report.Error (571, loc, "`{0}': cannot explicitly call operator or accessor",
5481                                 method.GetSignatureForError ());
5482         
5483                         return true;
5484                 }
5485
5486                 public override void Emit (EmitContext ec)
5487                 {
5488                         mg.EmitCall (ec, arguments);
5489                 }
5490                 
5491                 public override void EmitStatement (EmitContext ec)
5492                 {
5493                         Emit (ec);
5494
5495                         // 
5496                         // Pop the return value if there is one
5497                         //
5498                         if (type.Kind != MemberKind.Void)
5499                                 ec.Emit (OpCodes.Pop);
5500                 }
5501
5502                 public override SLE.Expression MakeExpression (BuilderContext ctx)
5503                 {
5504                         return MakeExpression (ctx, mg.InstanceExpression, mg.BestCandidate, arguments);
5505                 }
5506
5507                 public static SLE.Expression MakeExpression (BuilderContext ctx, Expression instance, MethodSpec mi, Arguments args)
5508                 {
5509 #if STATIC
5510                         throw new NotSupportedException ();
5511 #else
5512                         var instance_expr = instance == null ? null : instance.MakeExpression (ctx);
5513                         return SLE.Expression.Call (instance_expr, (MethodInfo) mi.GetMetaInfo (), Arguments.MakeExpression (args, ctx));
5514 #endif
5515                 }
5516
5517                 public override object Accept (StructuralVisitor visitor)
5518                 {
5519                         return visitor.Visit (this);
5520                 }
5521         }
5522
5523         //
5524         // Implements simple new expression 
5525         //
5526         public class New : ExpressionStatement, IMemoryLocation
5527         {
5528                 protected Arguments arguments;
5529
5530                 //
5531                 // During bootstrap, it contains the RequestedType,
5532                 // but if `type' is not null, it *might* contain a NewDelegate
5533                 // (because of field multi-initialization)
5534                 //
5535                 protected Expression RequestedType;
5536
5537                 protected MethodSpec method;
5538
5539                 public New (Expression requested_type, Arguments arguments, Location l)
5540                 {
5541                         RequestedType = requested_type;
5542                         this.arguments = arguments;
5543                         loc = l;
5544                 }
5545
5546                 #region Properties
5547                 public Arguments Arguments {
5548                         get {
5549                                 return arguments;
5550                         }
5551                 }
5552
5553                 //
5554                 // Returns true for resolved `new S()'
5555                 //
5556                 public bool IsDefaultStruct {
5557                         get {
5558                                 return arguments == null && type.IsStruct && GetType () == typeof (New);
5559                         }
5560                 }
5561
5562                 public Expression TypeExpression {
5563                         get {
5564                                 return RequestedType;
5565                         }
5566                 }
5567
5568                 #endregion
5569
5570                 /// <summary>
5571                 /// Converts complex core type syntax like 'new int ()' to simple constant
5572                 /// </summary>
5573                 public static Constant Constantify (TypeSpec t, Location loc)
5574                 {
5575                         switch (t.BuiltinType) {
5576                         case BuiltinTypeSpec.Type.Int:
5577                                 return new IntConstant (t, 0, loc);
5578                         case BuiltinTypeSpec.Type.UInt:
5579                                 return new UIntConstant (t, 0, loc);
5580                         case BuiltinTypeSpec.Type.Long:
5581                                 return new LongConstant (t, 0, loc);
5582                         case BuiltinTypeSpec.Type.ULong:
5583                                 return new ULongConstant (t, 0, loc);
5584                         case BuiltinTypeSpec.Type.Float:
5585                                 return new FloatConstant (t, 0, loc);
5586                         case BuiltinTypeSpec.Type.Double:
5587                                 return new DoubleConstant (t, 0, loc);
5588                         case BuiltinTypeSpec.Type.Short:
5589                                 return new ShortConstant (t, 0, loc);
5590                         case BuiltinTypeSpec.Type.UShort:
5591                                 return new UShortConstant (t, 0, loc);
5592                         case BuiltinTypeSpec.Type.SByte:
5593                                 return new SByteConstant (t, 0, loc);
5594                         case BuiltinTypeSpec.Type.Byte:
5595                                 return new ByteConstant (t, 0, loc);
5596                         case BuiltinTypeSpec.Type.Char:
5597                                 return new CharConstant (t, '\0', loc);
5598                         case BuiltinTypeSpec.Type.Bool:
5599                                 return new BoolConstant (t, false, loc);
5600                         case BuiltinTypeSpec.Type.Decimal:
5601                                 return new DecimalConstant (t, 0, loc);
5602                         }
5603
5604                         if (t.IsEnum)
5605                                 return new EnumConstant (Constantify (EnumSpec.GetUnderlyingType (t), loc), t);
5606
5607                         if (t.IsNullableType)
5608                                 return Nullable.LiftedNull.Create (t, loc);
5609
5610                         return null;
5611                 }
5612
5613                 public override bool ContainsEmitWithAwait ()
5614                 {
5615                         return arguments != null && arguments.ContainsEmitWithAwait ();
5616                 }
5617
5618                 //
5619                 // Checks whether the type is an interface that has the
5620                 // [ComImport, CoClass] attributes and must be treated
5621                 // specially
5622                 //
5623                 public Expression CheckComImport (ResolveContext ec)
5624                 {
5625                         if (!type.IsInterface)
5626                                 return null;
5627
5628                         //
5629                         // Turn the call into:
5630                         // (the-interface-stated) (new class-referenced-in-coclassattribute ())
5631                         //
5632                         var real_class = type.MemberDefinition.GetAttributeCoClass ();
5633                         if (real_class == null)
5634                                 return null;
5635
5636                         New proxy = new New (new TypeExpression (real_class, loc), arguments, loc);
5637                         Cast cast = new Cast (new TypeExpression (type, loc), proxy, loc);
5638                         return cast.Resolve (ec);
5639                 }
5640
5641                 public override Expression CreateExpressionTree (ResolveContext ec)
5642                 {
5643                         Arguments args;
5644                         if (method == null) {
5645                                 args = new Arguments (1);
5646                                 args.Add (new Argument (new TypeOf (type, loc)));
5647                         } else {
5648                                 args = Arguments.CreateForExpressionTree (ec,
5649                                         arguments, new TypeOfMethod (method, loc));
5650                         }
5651
5652                         return CreateExpressionFactoryCall (ec, "New", args);
5653                 }
5654                 
5655                 protected override Expression DoResolve (ResolveContext ec)
5656                 {
5657                         type = RequestedType.ResolveAsType (ec);
5658                         if (type == null)
5659                                 return null;
5660
5661                         eclass = ExprClass.Value;
5662
5663                         if (type.IsPointer) {
5664                                 ec.Report.Error (1919, loc, "Unsafe type `{0}' cannot be used in an object creation expression",
5665                                         TypeManager.CSharpName (type));
5666                                 return null;
5667                         }
5668
5669                         if (arguments == null) {
5670                                 Constant c = Constantify (type, RequestedType.Location);
5671                                 if (c != null)
5672                                         return ReducedExpression.Create (c, this);
5673                         }
5674
5675                         if (type.IsDelegate) {
5676                                 return (new NewDelegate (type, arguments, loc)).Resolve (ec);
5677                         }
5678
5679                         var tparam = type as TypeParameterSpec;
5680                         if (tparam != null) {
5681                                 //
5682                                 // Check whether the type of type parameter can be constructed. BaseType can be a struct for method overrides
5683                                 // where type parameter constraint is inflated to struct
5684                                 //
5685                                 if ((tparam.SpecialConstraint & (SpecialConstraint.Struct | SpecialConstraint.Constructor)) == 0 && !TypeSpec.IsValueType (tparam)) {
5686                                         ec.Report.Error (304, loc,
5687                                                 "Cannot create an instance of the variable type `{0}' because it does not have the new() constraint",
5688                                                 TypeManager.CSharpName (type));
5689                                 }
5690
5691                                 if ((arguments != null) && (arguments.Count != 0)) {
5692                                         ec.Report.Error (417, loc,
5693                                                 "`{0}': cannot provide arguments when creating an instance of a variable type",
5694                                                 TypeManager.CSharpName (type));
5695                                 }
5696
5697                                 return this;
5698                         }
5699
5700                         if (type.IsStatic) {
5701                                 ec.Report.SymbolRelatedToPreviousError (type);
5702                                 ec.Report.Error (712, loc, "Cannot create an instance of the static class `{0}'", TypeManager.CSharpName (type));
5703                                 return null;
5704                         }
5705
5706                         if (type.IsInterface || type.IsAbstract){
5707                                 if (!TypeManager.IsGenericType (type)) {
5708                                         RequestedType = CheckComImport (ec);
5709                                         if (RequestedType != null)
5710                                                 return RequestedType;
5711                                 }
5712                                 
5713                                 ec.Report.SymbolRelatedToPreviousError (type);
5714                                 ec.Report.Error (144, loc, "Cannot create an instance of the abstract class or interface `{0}'", TypeManager.CSharpName (type));
5715                                 return null;
5716                         }
5717
5718                         //
5719                         // Any struct always defines parameterless constructor
5720                         //
5721                         if (type.IsStruct && arguments == null)
5722                                 return this;
5723
5724                         bool dynamic;
5725                         if (arguments != null) {
5726                                 arguments.Resolve (ec, out dynamic);
5727                         } else {
5728                                 dynamic = false;
5729                         }
5730
5731                         method = ConstructorLookup (ec, type, ref arguments, loc);
5732
5733                         if (dynamic) {
5734                                 arguments.Insert (0, new Argument (new TypeOf (type, loc).Resolve (ec), Argument.AType.DynamicTypeName));
5735                                 return new DynamicConstructorBinder (type, arguments, loc).Resolve (ec);
5736                         }
5737
5738                         return this;
5739                 }
5740
5741                 bool DoEmitTypeParameter (EmitContext ec)
5742                 {
5743                         var m = ec.Module.PredefinedMembers.ActivatorCreateInstance.Resolve (loc);
5744                         if (m == null)
5745                                 return true;
5746
5747                         var ctor_factory = m.MakeGenericMethod (ec.MemberContext, type);
5748                         var tparam = (TypeParameterSpec) type;
5749
5750                         if (tparam.IsReferenceType) {
5751                                 ec.Emit (OpCodes.Call, ctor_factory);
5752                                 return true;
5753                         }
5754
5755                         // Allow DoEmit() to be called multiple times.
5756                         // We need to create a new LocalTemporary each time since
5757                         // you can't share LocalBuilders among ILGeneators.
5758                         LocalTemporary temp = new LocalTemporary (type);
5759
5760                         Label label_activator = ec.DefineLabel ();
5761                         Label label_end = ec.DefineLabel ();
5762
5763                         temp.AddressOf (ec, AddressOp.Store);
5764                         ec.Emit (OpCodes.Initobj, type);
5765
5766                         temp.Emit (ec);
5767                         ec.Emit (OpCodes.Box, type);
5768                         ec.Emit (OpCodes.Brfalse, label_activator);
5769
5770                         temp.AddressOf (ec, AddressOp.Store);
5771                         ec.Emit (OpCodes.Initobj, type);
5772                         temp.Emit (ec);
5773                         temp.Release (ec);
5774                         ec.Emit (OpCodes.Br_S, label_end);
5775
5776                         ec.MarkLabel (label_activator);
5777
5778                         ec.Emit (OpCodes.Call, ctor_factory);
5779                         ec.MarkLabel (label_end);
5780                         return true;
5781                 }
5782
5783                 //
5784                 // This Emit can be invoked in two contexts:
5785                 //    * As a mechanism that will leave a value on the stack (new object)
5786                 //    * As one that wont (init struct)
5787                 //
5788                 // If we are dealing with a ValueType, we have a few
5789                 // situations to deal with:
5790                 //
5791                 //    * The target is a ValueType, and we have been provided
5792                 //      the instance (this is easy, we are being assigned).
5793                 //
5794                 //    * The target of New is being passed as an argument,
5795                 //      to a boxing operation or a function that takes a
5796                 //      ValueType.
5797                 //
5798                 //      In this case, we need to create a temporary variable
5799                 //      that is the argument of New.
5800                 //
5801                 // Returns whether a value is left on the stack
5802                 //
5803                 // *** Implementation note ***
5804                 //
5805                 // To benefit from this optimization, each assignable expression
5806                 // has to manually cast to New and call this Emit.
5807                 //
5808                 // TODO: It's worth to implement it for arrays and fields
5809                 //
5810                 public virtual bool Emit (EmitContext ec, IMemoryLocation target)
5811                 {
5812                         bool is_value_type = TypeSpec.IsValueType (type);
5813                         VariableReference vr = target as VariableReference;
5814
5815                         if (target != null && is_value_type && (vr != null || method == null)) {
5816                                 target.AddressOf (ec, AddressOp.Store);
5817                         } else if (vr != null && vr.IsRef) {
5818                                 vr.EmitLoad (ec);
5819                         }
5820
5821                         if (arguments != null) {
5822                                 if (ec.HasSet (BuilderContext.Options.AsyncBody) && (arguments.Count > (this is NewInitialize ? 0 : 1)) && arguments.ContainsEmitWithAwait ())
5823                                         arguments = arguments.Emit (ec, false, true);
5824
5825                                 arguments.Emit (ec);
5826                         }
5827
5828                         if (is_value_type) {
5829                                 if (method == null) {
5830                                         ec.Emit (OpCodes.Initobj, type);
5831                                         return false;
5832                                 }
5833
5834                                 if (vr != null) {
5835                                         ec.Emit (OpCodes.Call, method);
5836                                         return false;
5837                                 }
5838                         }
5839                         
5840                         if (type is TypeParameterSpec)
5841                                 return DoEmitTypeParameter (ec);                        
5842
5843                         ec.Emit (OpCodes.Newobj, method);
5844                         return true;
5845                 }
5846
5847                 public override void Emit (EmitContext ec)
5848                 {
5849                         LocalTemporary v = null;
5850                         if (method == null && TypeSpec.IsValueType (type)) {
5851                                 // TODO: Use temporary variable from pool
5852                                 v = new LocalTemporary (type);
5853                         }
5854
5855                         if (!Emit (ec, v))
5856                                 v.Emit (ec);
5857                 }
5858                 
5859                 public override void EmitStatement (EmitContext ec)
5860                 {
5861                         LocalTemporary v = null;
5862                         if (method == null && TypeSpec.IsValueType (type)) {
5863                                 // TODO: Use temporary variable from pool
5864                                 v = new LocalTemporary (type);
5865                         }
5866
5867                         if (Emit (ec, v))
5868                                 ec.Emit (OpCodes.Pop);
5869                 }
5870
5871                 public void AddressOf (EmitContext ec, AddressOp mode)
5872                 {
5873                         EmitAddressOf (ec, mode);
5874                 }
5875
5876                 protected virtual IMemoryLocation EmitAddressOf (EmitContext ec, AddressOp mode)
5877                 {
5878                         LocalTemporary value_target = new LocalTemporary (type);
5879
5880                         if (type is TypeParameterSpec) {
5881                                 DoEmitTypeParameter (ec);
5882                                 value_target.Store (ec);
5883                                 value_target.AddressOf (ec, mode);
5884                                 return value_target;
5885                         }
5886
5887                         value_target.AddressOf (ec, AddressOp.Store);
5888
5889                         if (method == null) {
5890                                 ec.Emit (OpCodes.Initobj, type);
5891                         } else {
5892                                 if (arguments != null)
5893                                         arguments.Emit (ec);
5894
5895                                 ec.Emit (OpCodes.Call, method);
5896                         }
5897                         
5898                         value_target.AddressOf (ec, mode);
5899                         return value_target;
5900                 }
5901
5902                 protected override void CloneTo (CloneContext clonectx, Expression t)
5903                 {
5904                         New target = (New) t;
5905
5906                         target.RequestedType = RequestedType.Clone (clonectx);
5907                         if (arguments != null){
5908                                 target.arguments = arguments.Clone (clonectx);
5909                         }
5910                 }
5911
5912                 public override SLE.Expression MakeExpression (BuilderContext ctx)
5913                 {
5914 #if STATIC
5915                         return base.MakeExpression (ctx);
5916 #else
5917                         return SLE.Expression.New ((ConstructorInfo) method.GetMetaInfo (), Arguments.MakeExpression (arguments, ctx));
5918 #endif
5919                 }
5920                 
5921                 public override object Accept (StructuralVisitor visitor)
5922                 {
5923                         return visitor.Visit (this);
5924                 }
5925         }
5926
5927         //
5928         // Array initializer expression, the expression is allowed in
5929         // variable or field initialization only which makes it tricky as
5930         // the type has to be infered based on the context either from field
5931         // type or variable type (think of multiple declarators)
5932         //
5933         public class ArrayInitializer : Expression
5934         {
5935                 List<Expression> elements;
5936                 BlockVariableDeclaration variable;
5937
5938                 public ArrayInitializer (List<Expression> init, Location loc)
5939                 {
5940                         elements = init;
5941                         this.loc = loc;
5942                 }
5943
5944                 public ArrayInitializer (int count, Location loc)
5945                         : this (new List<Expression> (count), loc)
5946                 {
5947                 }
5948
5949                 public ArrayInitializer (Location loc)
5950                         : this (4, loc)
5951                 {
5952                 }
5953
5954                 #region Properties
5955
5956                 public int Count {
5957                         get { return elements.Count; }
5958                 }
5959
5960                 public List<Expression> Elements {
5961                         get {
5962                                 return elements;
5963                         }
5964                 }
5965
5966                 public Expression this [int index] {
5967                         get {
5968                                 return elements [index];
5969                         }
5970                 }
5971
5972                 public BlockVariableDeclaration VariableDeclaration {
5973                         get {
5974                                 return variable;
5975                         }
5976                         set {
5977                                 variable = value;
5978                         }
5979                 }
5980
5981                 #endregion
5982
5983                 public void Add (Expression expr)
5984                 {
5985                         elements.Add (expr);
5986                 }
5987
5988                 public override bool ContainsEmitWithAwait ()
5989                 {
5990                         throw new NotSupportedException ();
5991                 }
5992
5993                 public override Expression CreateExpressionTree (ResolveContext ec)
5994                 {
5995                         throw new NotSupportedException ("ET");
5996                 }
5997
5998                 protected override void CloneTo (CloneContext clonectx, Expression t)
5999                 {
6000                         var target = (ArrayInitializer) t;
6001
6002                         target.elements = new List<Expression> (elements.Count);
6003                         foreach (var element in elements)
6004                                 target.elements.Add (element.Clone (clonectx));
6005                 }
6006
6007                 protected override Expression DoResolve (ResolveContext rc)
6008                 {
6009                         var current_field = rc.CurrentMemberDefinition as FieldBase;
6010                         TypeExpression type;
6011                         if (current_field != null && rc.CurrentAnonymousMethod == null) {
6012                                 type = new TypeExpression (current_field.MemberType, current_field.Location);
6013                         } else if (variable != null) {
6014                                 if (variable.TypeExpression is VarExpr) {
6015                                         rc.Report.Error (820, loc, "An implicitly typed local variable declarator cannot use an array initializer");
6016                                         return EmptyExpression.Null;
6017                                 }
6018
6019                                 type = new TypeExpression (variable.Variable.Type, variable.Variable.Location);
6020                         } else {
6021                                 throw new NotImplementedException ("Unexpected array initializer context");
6022                         }
6023
6024                         return new ArrayCreation (type, this).Resolve (rc);
6025                 }
6026
6027                 public override void Emit (EmitContext ec)
6028                 {
6029                         throw new InternalErrorException ("Missing Resolve call");
6030                 }
6031                 
6032                 public override object Accept (StructuralVisitor visitor)
6033                 {
6034                         return visitor.Visit (this);
6035                 }
6036         }
6037
6038         /// <summary>
6039         ///   14.5.10.2: Represents an array creation expression.
6040         /// </summary>
6041         ///
6042         /// <remarks>
6043         ///   There are two possible scenarios here: one is an array creation
6044         ///   expression that specifies the dimensions and optionally the
6045         ///   initialization data and the other which does not need dimensions
6046         ///   specified but where initialization data is mandatory.
6047         /// </remarks>
6048         public class ArrayCreation : Expression
6049         {
6050                 FullNamedExpression requested_base_type;
6051                 ArrayInitializer initializers;
6052
6053                 //
6054                 // The list of Argument types.
6055                 // This is used to construct the `newarray' or constructor signature
6056                 //
6057                 protected List<Expression> arguments;
6058                 
6059                 protected TypeSpec array_element_type;
6060                 int num_arguments = 0;
6061                 protected int dimensions;
6062                 protected readonly ComposedTypeSpecifier rank;
6063                 Expression first_emit;
6064                 LocalTemporary first_emit_temp;
6065
6066                 protected List<Expression> array_data;
6067
6068                 Dictionary<int, int> bounds;
6069
6070 #if STATIC
6071                 // The number of constants in array initializers
6072                 int const_initializers_count;
6073                 bool only_constant_initializers;
6074 #endif
6075                 public ArrayCreation (FullNamedExpression requested_base_type, List<Expression> exprs, ComposedTypeSpecifier rank, ArrayInitializer initializers, Location l)
6076                         : this (requested_base_type, rank, initializers, l)
6077                 {
6078                         arguments = new List<Expression> (exprs);
6079                         num_arguments = arguments.Count;
6080                 }
6081
6082                 //
6083                 // For expressions like int[] foo = new int[] { 1, 2, 3 };
6084                 //
6085                 public ArrayCreation (FullNamedExpression requested_base_type, ComposedTypeSpecifier rank, ArrayInitializer initializers, Location loc)
6086                 {
6087                         this.requested_base_type = requested_base_type;
6088                         this.rank = rank;
6089                         this.initializers = initializers;
6090                         this.loc = loc;
6091
6092                         if (rank != null)
6093                                 num_arguments = rank.Dimension;
6094                 }
6095
6096                 //
6097                 // For compiler generated single dimensional arrays only
6098                 //
6099                 public ArrayCreation (FullNamedExpression requested_base_type, ArrayInitializer initializers, Location loc)
6100                         : this (requested_base_type, ComposedTypeSpecifier.SingleDimension, initializers, loc)
6101                 {
6102                 }
6103
6104                 //
6105                 // For expressions like int[] foo = { 1, 2, 3 };
6106                 //
6107                 public ArrayCreation (FullNamedExpression requested_base_type, ArrayInitializer initializers)
6108                         : this (requested_base_type, null, initializers, initializers.Location)
6109                 {
6110                 }
6111
6112                 public ComposedTypeSpecifier Rank {
6113                         get {
6114                                 return this.rank;
6115                         }
6116                 }
6117                 
6118                 public FullNamedExpression TypeExpression {
6119                         get {
6120                                 return this.requested_base_type;
6121                         }
6122                 }
6123                 
6124                 public ArrayInitializer Initializers {
6125                         get {
6126                                 return this.initializers;
6127                         }
6128                 }
6129
6130                 bool CheckIndices (ResolveContext ec, ArrayInitializer probe, int idx, bool specified_dims, int child_bounds)
6131                 {
6132                         if (initializers != null && bounds == null) {
6133                                 //
6134                                 // We use this to store all the date values in the order in which we
6135                                 // will need to store them in the byte blob later
6136                                 //
6137                                 array_data = new List<Expression> ();
6138                                 bounds = new Dictionary<int, int> ();
6139                         }
6140
6141                         if (specified_dims) { 
6142                                 Expression a = arguments [idx];
6143                                 a = a.Resolve (ec);
6144                                 if (a == null)
6145                                         return false;
6146
6147                                 a = ConvertExpressionToArrayIndex (ec, a);
6148                                 if (a == null)
6149                                         return false;
6150
6151                                 arguments[idx] = a;
6152
6153                                 if (initializers != null) {
6154                                         Constant c = a as Constant;
6155                                         if (c == null && a is ArrayIndexCast)
6156                                                 c = ((ArrayIndexCast) a).Child as Constant;
6157
6158                                         if (c == null) {
6159                                                 ec.Report.Error (150, a.Location, "A constant value is expected");
6160                                                 return false;
6161                                         }
6162
6163                                         int value;
6164                                         try {
6165                                                 value = System.Convert.ToInt32 (c.GetValue ());
6166                                         } catch {
6167                                                 ec.Report.Error (150, a.Location, "A constant value is expected");
6168                                                 return false;
6169                                         }
6170
6171                                         // TODO: probe.Count does not fit ulong in
6172                                         if (value != probe.Count) {
6173                                                 ec.Report.Error (847, loc, "An array initializer of length `{0}' was expected", value.ToString ());
6174                                                 return false;
6175                                         }
6176
6177                                         bounds[idx] = value;
6178                                 }
6179                         }
6180
6181                         if (initializers == null)
6182                                 return true;
6183
6184                         for (int i = 0; i < probe.Count; ++i) {
6185                                 var o = probe [i];
6186                                 if (o is ArrayInitializer) {
6187                                         var sub_probe = o as ArrayInitializer;
6188                                         if (idx + 1 >= dimensions){
6189                                                 ec.Report.Error (623, loc, "Array initializers can only be used in a variable or field initializer. Try using a new expression instead");
6190                                                 return false;
6191                                         }
6192                                         
6193                                         bool ret = CheckIndices (ec, sub_probe, idx + 1, specified_dims, child_bounds - 1);
6194                                         if (!ret)
6195                                                 return false;
6196                                 } else if (child_bounds > 1) {
6197                                         ec.Report.Error (846, o.Location, "A nested array initializer was expected");
6198                                 } else {
6199                                         Expression element = ResolveArrayElement (ec, o);
6200                                         if (element == null)
6201                                                 continue;
6202 #if STATIC
6203                                         // Initializers with the default values can be ignored
6204                                         Constant c = element as Constant;
6205                                         if (c != null) {
6206                                                 if (!c.IsDefaultInitializer (array_element_type)) {
6207                                                         ++const_initializers_count;
6208                                                 }
6209                                         } else {
6210                                                 only_constant_initializers = false;
6211                                         }
6212 #endif                                  
6213                                         array_data.Add (element);
6214                                 }
6215                         }
6216
6217                         return true;
6218                 }
6219
6220                 public override bool ContainsEmitWithAwait ()
6221                 {
6222                         foreach (var arg in arguments) {
6223                                 if (arg.ContainsEmitWithAwait ())
6224                                         return true;
6225                         }
6226
6227                         return InitializersContainAwait ();
6228                 }
6229
6230                 public override Expression CreateExpressionTree (ResolveContext ec)
6231                 {
6232                         Arguments args;
6233
6234                         if (array_data == null) {
6235                                 args = new Arguments (arguments.Count + 1);
6236                                 args.Add (new Argument (new TypeOf (array_element_type, loc)));
6237                                 foreach (Expression a in arguments)
6238                                         args.Add (new Argument (a.CreateExpressionTree (ec)));
6239
6240                                 return CreateExpressionFactoryCall (ec, "NewArrayBounds", args);
6241                         }
6242
6243                         if (dimensions > 1) {
6244                                 ec.Report.Error (838, loc, "An expression tree cannot contain a multidimensional array initializer");
6245                                 return null;
6246                         }
6247
6248                         args = new Arguments (array_data == null ? 1 : array_data.Count + 1);
6249                         args.Add (new Argument (new TypeOf (array_element_type, loc)));
6250                         if (array_data != null) {
6251                                 for (int i = 0; i < array_data.Count; ++i) {
6252                                         Expression e = array_data [i];
6253                                         args.Add (new Argument (e.CreateExpressionTree (ec)));
6254                                 }
6255                         }
6256
6257                         return CreateExpressionFactoryCall (ec, "NewArrayInit", args);
6258                 }               
6259                 
6260                 void UpdateIndices (ResolveContext rc)
6261                 {
6262                         int i = 0;
6263                         for (var probe = initializers; probe != null;) {
6264                                 Expression e = new IntConstant (rc.BuiltinTypes, probe.Count, Location.Null);
6265                                 arguments.Add (e);
6266                                 bounds[i++] = probe.Count;
6267
6268                                 if (probe.Count > 0 && probe [0] is ArrayInitializer) {
6269                                         probe = (ArrayInitializer) probe[0];
6270                                 } else if (dimensions > i) {
6271                                         continue;
6272                                 } else {
6273                                         return;
6274                                 }
6275                         }
6276                 }
6277
6278                 protected override void Error_NegativeArrayIndex (ResolveContext ec, Location loc)
6279                 {
6280                         ec.Report.Error (248, loc, "Cannot create an array with a negative size");
6281                 }
6282
6283                 bool InitializersContainAwait ()
6284                 {
6285                         if (array_data == null)
6286                                 return false;
6287
6288                         foreach (var expr in array_data) {
6289                                 if (expr.ContainsEmitWithAwait ())
6290                                         return true;
6291                         }
6292
6293                         return false;
6294                 }
6295
6296                 protected virtual Expression ResolveArrayElement (ResolveContext ec, Expression element)
6297                 {
6298                         element = element.Resolve (ec);
6299                         if (element == null)
6300                                 return null;
6301
6302                         if (element is CompoundAssign.TargetExpression) {
6303                                 if (first_emit != null)
6304                                         throw new InternalErrorException ("Can only handle one mutator at a time");
6305                                 first_emit = element;
6306                                 element = first_emit_temp = new LocalTemporary (element.Type);
6307                         }
6308
6309                         return Convert.ImplicitConversionRequired (
6310                                 ec, element, array_element_type, loc);
6311                 }
6312
6313                 protected bool ResolveInitializers (ResolveContext ec)
6314                 {
6315 #if STATIC
6316                         only_constant_initializers = true;
6317 #endif
6318
6319                         if (arguments != null) {
6320                                 bool res = true;
6321                                 for (int i = 0; i < arguments.Count; ++i) {
6322                                         res &= CheckIndices (ec, initializers, i, true, dimensions);
6323                                         if (initializers != null)
6324                                                 break;
6325                                 }
6326
6327                                 return res;
6328                         }
6329
6330                         arguments = new List<Expression> ();
6331
6332                         if (!CheckIndices (ec, initializers, 0, false, dimensions))
6333                                 return false;
6334                                 
6335                         UpdateIndices (ec);
6336                                 
6337                         return true;
6338                 }
6339
6340                 //
6341                 // Resolved the type of the array
6342                 //
6343                 bool ResolveArrayType (ResolveContext ec)
6344                 {
6345                         //
6346                         // Lookup the type
6347                         //
6348                         FullNamedExpression array_type_expr;
6349                         if (num_arguments > 0) {
6350                                 array_type_expr = new ComposedCast (requested_base_type, rank);
6351                         } else {
6352                                 array_type_expr = requested_base_type;
6353                         }
6354
6355                         type = array_type_expr.ResolveAsType (ec);
6356                         if (array_type_expr == null)
6357                                 return false;
6358
6359                         var ac = type as ArrayContainer;
6360                         if (ac == null) {
6361                                 ec.Report.Error (622, loc, "Can only use array initializer expressions to assign to array types. Try using a new expression instead");
6362                                 return false;
6363                         }
6364
6365                         array_element_type = ac.Element;
6366                         dimensions = ac.Rank;
6367
6368                         return true;
6369                 }
6370
6371                 protected override Expression DoResolve (ResolveContext ec)
6372                 {
6373                         if (type != null)
6374                                 return this;
6375
6376                         if (!ResolveArrayType (ec))
6377                                 return null;
6378
6379                         //
6380                         // validate the initializers and fill in any missing bits
6381                         //
6382                         if (!ResolveInitializers (ec))
6383                                 return null;
6384
6385                         eclass = ExprClass.Value;
6386                         return this;
6387                 }
6388
6389                 byte [] MakeByteBlob ()
6390                 {
6391                         int factor;
6392                         byte [] data;
6393                         byte [] element;
6394                         int count = array_data.Count;
6395
6396                         TypeSpec element_type = array_element_type;
6397                         if (element_type.IsEnum)
6398                                 element_type = EnumSpec.GetUnderlyingType (element_type);
6399
6400                         factor = BuiltinTypeSpec.GetSize (element_type);
6401                         if (factor == 0)
6402                                 throw new Exception ("unrecognized type in MakeByteBlob: " + element_type);
6403
6404                         data = new byte [(count * factor + 3) & ~3];
6405                         int idx = 0;
6406
6407                         for (int i = 0; i < count; ++i) {
6408                                 var c = array_data[i] as Constant;
6409                                 if (c == null) {
6410                                         idx += factor;
6411                                         continue;
6412                                 }
6413
6414                                 object v = c.GetValue ();
6415
6416                                 switch (element_type.BuiltinType) {
6417                                 case BuiltinTypeSpec.Type.Long:
6418                                         long lval = (long) v;
6419
6420                                         for (int j = 0; j < factor; ++j) {
6421                                                 data[idx + j] = (byte) (lval & 0xFF);
6422                                                 lval = (lval >> 8);
6423                                         }
6424                                         break;
6425                                 case BuiltinTypeSpec.Type.ULong:
6426                                         ulong ulval = (ulong) v;
6427
6428                                         for (int j = 0; j < factor; ++j) {
6429                                                 data[idx + j] = (byte) (ulval & 0xFF);
6430                                                 ulval = (ulval >> 8);
6431                                         }
6432                                         break;
6433                                 case BuiltinTypeSpec.Type.Float:
6434                                         element = BitConverter.GetBytes ((float) v);
6435
6436                                         for (int j = 0; j < factor; ++j)
6437                                                 data[idx + j] = element[j];
6438                                         if (!BitConverter.IsLittleEndian)
6439                                                 System.Array.Reverse (data, idx, 4);
6440                                         break;
6441                                 case BuiltinTypeSpec.Type.Double:
6442                                         element = BitConverter.GetBytes ((double) v);
6443
6444                                         for (int j = 0; j < factor; ++j)
6445                                                 data[idx + j] = element[j];
6446
6447                                         // FIXME: Handle the ARM float format.
6448                                         if (!BitConverter.IsLittleEndian)
6449                                                 System.Array.Reverse (data, idx, 8);
6450                                         break;
6451                                 case BuiltinTypeSpec.Type.Char:
6452                                         int chval = (int) ((char) v);
6453
6454                                         data[idx] = (byte) (chval & 0xff);
6455                                         data[idx + 1] = (byte) (chval >> 8);
6456                                         break;
6457                                 case BuiltinTypeSpec.Type.Short:
6458                                         int sval = (int) ((short) v);
6459
6460                                         data[idx] = (byte) (sval & 0xff);
6461                                         data[idx + 1] = (byte) (sval >> 8);
6462                                         break;
6463                                 case BuiltinTypeSpec.Type.UShort:
6464                                         int usval = (int) ((ushort) v);
6465
6466                                         data[idx] = (byte) (usval & 0xff);
6467                                         data[idx + 1] = (byte) (usval >> 8);
6468                                         break;
6469                                 case BuiltinTypeSpec.Type.Int:
6470                                         int val = (int) v;
6471
6472                                         data[idx] = (byte) (val & 0xff);
6473                                         data[idx + 1] = (byte) ((val >> 8) & 0xff);
6474                                         data[idx + 2] = (byte) ((val >> 16) & 0xff);
6475                                         data[idx + 3] = (byte) (val >> 24);
6476                                         break;
6477                                 case BuiltinTypeSpec.Type.UInt:
6478                                         uint uval = (uint) v;
6479
6480                                         data[idx] = (byte) (uval & 0xff);
6481                                         data[idx + 1] = (byte) ((uval >> 8) & 0xff);
6482                                         data[idx + 2] = (byte) ((uval >> 16) & 0xff);
6483                                         data[idx + 3] = (byte) (uval >> 24);
6484                                         break;
6485                                 case BuiltinTypeSpec.Type.SByte:
6486                                         data[idx] = (byte) (sbyte) v;
6487                                         break;
6488                                 case BuiltinTypeSpec.Type.Byte:
6489                                         data[idx] = (byte) v;
6490                                         break;
6491                                 case BuiltinTypeSpec.Type.Bool:
6492                                         data[idx] = (byte) ((bool) v ? 1 : 0);
6493                                         break;
6494                                 case BuiltinTypeSpec.Type.Decimal:
6495                                         int[] bits = Decimal.GetBits ((decimal) v);
6496                                         int p = idx;
6497
6498                                         // FIXME: For some reason, this doesn't work on the MS runtime.
6499                                         int[] nbits = new int[4];
6500                                         nbits[0] = bits[3];
6501                                         nbits[1] = bits[2];
6502                                         nbits[2] = bits[0];
6503                                         nbits[3] = bits[1];
6504
6505                                         for (int j = 0; j < 4; j++) {
6506                                                 data[p++] = (byte) (nbits[j] & 0xff);
6507                                                 data[p++] = (byte) ((nbits[j] >> 8) & 0xff);
6508                                                 data[p++] = (byte) ((nbits[j] >> 16) & 0xff);
6509                                                 data[p++] = (byte) (nbits[j] >> 24);
6510                                         }
6511                                         break;
6512                                 default:
6513                                         throw new Exception ("Unrecognized type in MakeByteBlob: " + element_type);
6514                                 }
6515
6516                                 idx += factor;
6517                         }
6518
6519                         return data;
6520                 }
6521
6522 #if NET_4_0 || MONODROID
6523                 public override SLE.Expression MakeExpression (BuilderContext ctx)
6524                 {
6525 #if STATIC
6526                         return base.MakeExpression (ctx);
6527 #else
6528                         var initializers = new SLE.Expression [array_data.Count];
6529                         for (var i = 0; i < initializers.Length; i++) {
6530                                 if (array_data [i] == null)
6531                                         initializers [i] = SLE.Expression.Default (array_element_type.GetMetaInfo ());
6532                                 else
6533                                         initializers [i] = array_data [i].MakeExpression (ctx);
6534                         }
6535
6536                         return SLE.Expression.NewArrayInit (array_element_type.GetMetaInfo (), initializers);
6537 #endif
6538                 }
6539 #endif
6540 #if STATIC
6541                 //
6542                 // Emits the initializers for the array
6543                 //
6544                 void EmitStaticInitializers (EmitContext ec, FieldExpr stackArray)
6545                 {
6546                         var m = ec.Module.PredefinedMembers.RuntimeHelpersInitializeArray.Resolve (loc);
6547                         if (m == null)
6548                                 return;
6549
6550                         //
6551                         // First, the static data
6552                         //
6553                         byte [] data = MakeByteBlob ();
6554                         var fb = ec.CurrentTypeDefinition.Module.MakeStaticData (data, loc);
6555
6556                         if (stackArray == null) {
6557                                 ec.Emit (OpCodes.Dup);
6558                         } else {
6559                                 stackArray.Emit (ec);
6560                         }
6561
6562                         ec.Emit (OpCodes.Ldtoken, fb);
6563                         ec.Emit (OpCodes.Call, m);
6564                 }
6565 #endif
6566
6567                 //
6568                 // Emits pieces of the array that can not be computed at compile
6569                 // time (variables and string locations).
6570                 //
6571                 // This always expect the top value on the stack to be the array
6572                 //
6573                 void EmitDynamicInitializers (EmitContext ec, bool emitConstants, FieldExpr stackArray)
6574                 {
6575                         int dims = bounds.Count;
6576                         var current_pos = new int [dims];
6577
6578                         for (int i = 0; i < array_data.Count; i++){
6579
6580                                 Expression e = array_data [i];
6581                                 var c = e as Constant;
6582
6583                                 // Constant can be initialized via StaticInitializer
6584                                 if (c == null || (c != null && emitConstants && !c.IsDefaultInitializer (array_element_type))) {
6585
6586                                         var etype = e.Type;
6587
6588                                         if (stackArray != null) {
6589                                                 if (e.ContainsEmitWithAwait ()) {
6590                                                         e = e.EmitToField (ec);
6591                                                 }
6592
6593                                                 stackArray.Emit (ec);
6594                                         } else {
6595                                                 ec.Emit (OpCodes.Dup);
6596                                         }
6597
6598                                         for (int idx = 0; idx < dims; idx++) 
6599                                                 ec.EmitInt (current_pos [idx]);
6600
6601                                         //
6602                                         // If we are dealing with a struct, get the
6603                                         // address of it, so we can store it.
6604                                         //
6605                                         if (dims == 1 && etype.IsStruct) {
6606                                                 switch (etype.BuiltinType) {
6607                                                 case BuiltinTypeSpec.Type.Byte:
6608                                                 case BuiltinTypeSpec.Type.SByte:
6609                                                 case BuiltinTypeSpec.Type.Bool:
6610                                                 case BuiltinTypeSpec.Type.Short:
6611                                                 case BuiltinTypeSpec.Type.UShort:
6612                                                 case BuiltinTypeSpec.Type.Char:
6613                                                 case BuiltinTypeSpec.Type.Int:
6614                                                 case BuiltinTypeSpec.Type.UInt:
6615                                                 case BuiltinTypeSpec.Type.Long:
6616                                                 case BuiltinTypeSpec.Type.ULong:
6617                                                 case BuiltinTypeSpec.Type.Float:
6618                                                 case BuiltinTypeSpec.Type.Double:
6619                                                         break;
6620                                                 default:
6621                                                         ec.Emit (OpCodes.Ldelema, etype);
6622                                                         break;
6623                                                 }
6624                                         }
6625
6626                                         e.Emit (ec);
6627
6628                                         ec.EmitArrayStore ((ArrayContainer) type);
6629                                 }
6630                                 
6631                                 //
6632                                 // Advance counter
6633                                 //
6634                                 for (int j = dims - 1; j >= 0; j--){
6635                                         current_pos [j]++;
6636                                         if (current_pos [j] < bounds [j])
6637                                                 break;
6638                                         current_pos [j] = 0;
6639                                 }
6640                         }
6641                 }
6642
6643                 public override void Emit (EmitContext ec)
6644                 {
6645                         EmitToFieldSource (ec);
6646                 }
6647
6648                 protected sealed override FieldExpr EmitToFieldSource (EmitContext ec)
6649                 {
6650                         if (first_emit != null) {
6651                                 first_emit.Emit (ec);
6652                                 first_emit_temp.Store (ec);
6653                         }
6654
6655                         FieldExpr await_stack_field;
6656                         if (ec.HasSet (BuilderContext.Options.AsyncBody) && InitializersContainAwait ()) {
6657                                 await_stack_field = ec.GetTemporaryField (type);
6658                                 ec.EmitThis ();
6659                         } else {
6660                                 await_stack_field = null;
6661                         }
6662
6663                         EmitExpressionsList (ec, arguments);
6664
6665                         ec.EmitArrayNew ((ArrayContainer) type);
6666                         
6667                         if (initializers == null)
6668                                 return await_stack_field;
6669
6670                         if (await_stack_field != null)
6671                                 await_stack_field.EmitAssignFromStack (ec);
6672
6673 #if STATIC
6674                         //
6675                         // Emit static initializer for arrays which contain more than 2 items and
6676                         // the static initializer will initialize at least 25% of array values or there
6677                         // is more than 10 items to be initialized
6678                         //
6679                         // NOTE: const_initializers_count does not contain default constant values.
6680                         //
6681                         if (const_initializers_count > 2 && (array_data.Count > 10 || const_initializers_count * 4 > (array_data.Count)) &&
6682                                 (BuiltinTypeSpec.IsPrimitiveType (array_element_type) || array_element_type.IsEnum)) {
6683                                 EmitStaticInitializers (ec, await_stack_field);
6684
6685                                 if (!only_constant_initializers)
6686                                         EmitDynamicInitializers (ec, false, await_stack_field);
6687                         } else
6688 #endif
6689                         {
6690                                 EmitDynamicInitializers (ec, true, await_stack_field);
6691                         }
6692
6693                         if (first_emit_temp != null)
6694                                 first_emit_temp.Release (ec);
6695
6696                         return await_stack_field;
6697                 }
6698
6699                 public override void EncodeAttributeValue (IMemberContext rc, AttributeEncoder enc, TypeSpec targetType)
6700                 {
6701                         // no multi dimensional or jagged arrays
6702                         if (arguments.Count != 1 || array_element_type.IsArray) {
6703                                 base.EncodeAttributeValue (rc, enc, targetType);
6704                                 return;
6705                         }
6706
6707                         // No array covariance, except for array -> object
6708                         if (type != targetType) {
6709                                 if (targetType.BuiltinType != BuiltinTypeSpec.Type.Object) {
6710                                         base.EncodeAttributeValue (rc, enc, targetType);
6711                                         return;
6712                                 }
6713
6714                                 if (enc.Encode (type) == AttributeEncoder.EncodedTypeProperties.DynamicType) {
6715                                         Attribute.Error_AttributeArgumentIsDynamic (rc, loc);
6716                                         return;
6717                                 }
6718                         }
6719
6720                         // Single dimensional array of 0 size
6721                         if (array_data == null) {
6722                                 IntConstant ic = arguments[0] as IntConstant;
6723                                 if (ic == null || !ic.IsDefaultValue) {
6724                                         base.EncodeAttributeValue (rc, enc, targetType);
6725                                 } else {
6726                                         enc.Encode (0);
6727                                 }
6728
6729                                 return;
6730                         }
6731
6732                         enc.Encode (array_data.Count);
6733                         foreach (var element in array_data) {
6734                                 element.EncodeAttributeValue (rc, enc, array_element_type);
6735                         }
6736                 }
6737                 
6738                 protected override void CloneTo (CloneContext clonectx, Expression t)
6739                 {
6740                         ArrayCreation target = (ArrayCreation) t;
6741
6742                         if (requested_base_type != null)
6743                                 target.requested_base_type = (FullNamedExpression)requested_base_type.Clone (clonectx);
6744
6745                         if (arguments != null){
6746                                 target.arguments = new List<Expression> (arguments.Count);
6747                                 foreach (Expression e in arguments)
6748                                         target.arguments.Add (e.Clone (clonectx));
6749                         }
6750
6751                         if (initializers != null)
6752                                 target.initializers = (ArrayInitializer) initializers.Clone (clonectx);
6753                 }
6754                 
6755                 public override object Accept (StructuralVisitor visitor)
6756                 {
6757                         return visitor.Visit (this);
6758                 }
6759         }
6760         
6761         //
6762         // Represents an implicitly typed array epxression
6763         //
6764         class ImplicitlyTypedArrayCreation : ArrayCreation
6765         {
6766                 sealed class InferenceContext : TypeInferenceContext
6767                 {
6768                         class ExpressionBoundInfo : BoundInfo
6769                         {
6770                                 readonly Expression expr;
6771
6772                                 public ExpressionBoundInfo (Expression expr)
6773                                         : base (expr.Type, BoundKind.Lower)
6774                                 {
6775                                         this.expr = expr;
6776                                 }
6777
6778                                 public override bool Equals (BoundInfo other)
6779                                 {
6780                                         // We are using expression not type for conversion check
6781                                         // no optimization based on types is possible
6782                                         return false;
6783                                 }
6784
6785                                 public override Expression GetTypeExpression ()
6786                                 {
6787                                         return expr;
6788                                 }
6789                         }
6790
6791                         public void AddExpression (Expression expr)
6792                         {
6793                                 AddToBounds (new ExpressionBoundInfo (expr), 0);
6794                         }
6795                 }
6796
6797                 InferenceContext best_type_inference;
6798
6799                 public ImplicitlyTypedArrayCreation (ComposedTypeSpecifier rank, ArrayInitializer initializers, Location loc)
6800                         : base (null, rank, initializers, loc)
6801                 {                       
6802                 }
6803
6804                 public ImplicitlyTypedArrayCreation (ArrayInitializer initializers, Location loc)
6805                         : base (null, initializers, loc)
6806                 {
6807                 }
6808
6809                 protected override Expression DoResolve (ResolveContext ec)
6810                 {
6811                         if (type != null)
6812                                 return this;
6813
6814                         dimensions = rank.Dimension;
6815
6816                         best_type_inference = new InferenceContext ();
6817
6818                         if (!ResolveInitializers (ec))
6819                                 return null;
6820
6821                         best_type_inference.FixAllTypes (ec);
6822                         array_element_type = best_type_inference.InferredTypeArguments[0];
6823                         best_type_inference = null;
6824
6825                         if (array_element_type == null ||
6826                                 array_element_type == InternalType.NullLiteral || array_element_type == InternalType.MethodGroup || array_element_type == InternalType.AnonymousMethod ||
6827                                 arguments.Count != rank.Dimension) {
6828                                 ec.Report.Error (826, loc,
6829                                         "The type of an implicitly typed array cannot be inferred from the initializer. Try specifying array type explicitly");
6830                                 return null;
6831                         }
6832
6833                         //
6834                         // At this point we found common base type for all initializer elements
6835                         // but we have to be sure that all static initializer elements are of
6836                         // same type
6837                         //
6838                         UnifyInitializerElement (ec);
6839
6840                         type = ArrayContainer.MakeType (ec.Module, array_element_type, dimensions);
6841                         eclass = ExprClass.Value;
6842                         return this;
6843                 }
6844
6845                 //
6846                 // Converts static initializer only
6847                 //
6848                 void UnifyInitializerElement (ResolveContext ec)
6849                 {
6850                         for (int i = 0; i < array_data.Count; ++i) {
6851                                 Expression e = array_data[i];
6852                                 if (e != null)
6853                                         array_data [i] = Convert.ImplicitConversion (ec, e, array_element_type, Location.Null);
6854                         }
6855                 }
6856
6857                 protected override Expression ResolveArrayElement (ResolveContext ec, Expression element)
6858                 {
6859                         element = element.Resolve (ec);
6860                         if (element != null)
6861                                 best_type_inference.AddExpression (element);
6862
6863                         return element;
6864                 }
6865         }       
6866         
6867         sealed class CompilerGeneratedThis : This
6868         {
6869                 public CompilerGeneratedThis (TypeSpec type, Location loc)
6870                         : base (loc)
6871                 {
6872                         this.type = type;
6873                         eclass = ExprClass.Variable;
6874                 }
6875
6876                 protected override Expression DoResolve (ResolveContext ec)
6877                 {
6878                         return this;
6879                 }
6880
6881                 public override HoistedVariable GetHoistedVariable (AnonymousExpression ae)
6882                 {
6883                         return null;
6884                 }
6885         }
6886         
6887         /// <summary>
6888         ///   Represents the `this' construct
6889         /// </summary>
6890
6891         public class This : VariableReference
6892         {
6893                 sealed class ThisVariable : ILocalVariable
6894                 {
6895                         public static readonly ILocalVariable Instance = new ThisVariable ();
6896
6897                         public void Emit (EmitContext ec)
6898                         {
6899                                 ec.EmitThis ();
6900                         }
6901
6902                         public void EmitAssign (EmitContext ec)
6903                         {
6904                                 throw new InvalidOperationException ();
6905                         }
6906
6907                         public void EmitAddressOf (EmitContext ec)
6908                         {
6909                                 ec.EmitThis ();
6910                         }
6911                 }
6912
6913                 VariableInfo variable_info;
6914
6915                 public This (Location loc)
6916                 {
6917                         this.loc = loc;
6918                 }
6919
6920                 #region Properties
6921
6922                 public override string Name {
6923                         get { return "this"; }
6924                 }
6925
6926                 public override bool IsLockedByStatement {
6927                         get {
6928                                 return false;
6929                         }
6930                         set {
6931                         }
6932                 }
6933
6934                 public override bool IsRef {
6935                         get { return type.IsStruct; }
6936                 }
6937
6938                 public override bool IsSideEffectFree {
6939                         get {
6940                                 return true;
6941                         }
6942                 }
6943
6944                 protected override ILocalVariable Variable {
6945                         get { return ThisVariable.Instance; }
6946                 }
6947
6948                 public override VariableInfo VariableInfo {
6949                         get { return variable_info; }
6950                 }
6951
6952                 public override bool IsFixed {
6953                         get { return false; }
6954                 }
6955
6956                 #endregion
6957
6958                 public void CheckStructThisDefiniteAssignment (ResolveContext rc)
6959                 {
6960                         //
6961                         // It's null for all cases when we don't need to check `this'
6962                         // definitive assignment
6963                         //
6964                         if (variable_info == null)
6965                                 return;
6966
6967                         if (rc.OmitStructFlowAnalysis)
6968                                 return;
6969
6970                         if (!variable_info.IsAssigned (rc)) {
6971                                 rc.Report.Error (188, loc,
6972                                         "The `this' object cannot be used before all of its fields are assigned to");
6973                         }
6974                 }
6975
6976                 protected virtual void Error_ThisNotAvailable (ResolveContext ec)
6977                 {
6978                         if (ec.IsStatic && !ec.HasSet (ResolveContext.Options.ConstantScope)) {
6979                                 ec.Report.Error (26, loc, "Keyword `this' is not valid in a static property, static method, or static field initializer");
6980                         } else if (ec.CurrentAnonymousMethod != null) {
6981                                 ec.Report.Error (1673, loc,
6982                                         "Anonymous methods inside structs cannot access instance members of `this'. " +
6983                                         "Consider copying `this' to a local variable outside the anonymous method and using the local instead");
6984                         } else {
6985                                 ec.Report.Error (27, loc, "Keyword `this' is not available in the current context");
6986                         }
6987                 }
6988
6989                 public override HoistedVariable GetHoistedVariable (AnonymousExpression ae)
6990                 {
6991                         if (ae == null)
6992                                 return null;
6993
6994                         AnonymousMethodStorey storey = ae.Storey;
6995                         return storey != null ? storey.HoistedThis : null;
6996                 }
6997
6998                 public static bool IsThisAvailable (ResolveContext ec, bool ignoreAnonymous)
6999                 {
7000                         if (ec.IsStatic || ec.HasAny (ResolveContext.Options.FieldInitializerScope | ResolveContext.Options.BaseInitializer | ResolveContext.Options.ConstantScope))
7001                                 return false;
7002
7003                         if (ignoreAnonymous || ec.CurrentAnonymousMethod == null)
7004                                 return true;
7005
7006                         if (ec.CurrentType.IsStruct && !(ec.CurrentAnonymousMethod is StateMachineInitializer))
7007                                 return false;
7008
7009                         return true;
7010                 }
7011
7012                 public virtual void ResolveBase (ResolveContext ec)
7013                 {
7014                         eclass = ExprClass.Variable;
7015                         type = ec.CurrentType;
7016
7017                         if (!IsThisAvailable (ec, false)) {
7018                                 Error_ThisNotAvailable (ec);
7019                                 return;
7020                         }
7021
7022                         var block = ec.CurrentBlock;
7023                         if (block != null) {
7024                                 var top = block.ParametersBlock.TopBlock;
7025                                 if (top.ThisVariable != null)
7026                                         variable_info = top.ThisVariable.VariableInfo;
7027
7028                                 AnonymousExpression am = ec.CurrentAnonymousMethod;
7029                                 if (am != null && ec.IsVariableCapturingRequired && !block.Explicit.HasCapturedThis) {
7030                                         //
7031                                         // Hoisted this is almost like hoisted variable but not exactly. When
7032                                         // there is no variable hoisted we can simply emit an instance method
7033                                         // without lifting this into a storey. Unfotunatelly this complicates
7034                                         // this in other cases because we don't know where this will be hoisted
7035                                         // until top-level block is fully resolved
7036                                         //
7037                                         top.AddThisReferenceFromChildrenBlock (block.Explicit);
7038                                         am.SetHasThisAccess ();
7039                                 }
7040                         }
7041                 }
7042
7043                 protected override Expression DoResolve (ResolveContext ec)
7044                 {
7045                         ResolveBase (ec);
7046
7047                         CheckStructThisDefiniteAssignment (ec);
7048
7049                         return this;
7050                 }
7051
7052                 public override Expression DoResolveLValue (ResolveContext ec, Expression right_side)
7053                 {
7054                         if (eclass == ExprClass.Unresolved)
7055                                 ResolveBase (ec);
7056
7057                         if (variable_info != null)
7058                                 variable_info.SetAssigned (ec);
7059
7060                         if (type.IsClass){
7061                                 if (right_side == EmptyExpression.UnaryAddress)
7062                                         ec.Report.Error (459, loc, "Cannot take the address of `this' because it is read-only");
7063                                 else if (right_side == EmptyExpression.OutAccess)
7064                                         ec.Report.Error (1605, loc, "Cannot pass `this' as a ref or out argument because it is read-only");
7065                                 else
7066                                         ec.Report.Error (1604, loc, "Cannot assign to `this' because it is read-only");
7067                         }
7068
7069                         return this;
7070                 }
7071
7072                 public override int GetHashCode()
7073                 {
7074                         throw new NotImplementedException ();
7075                 }
7076
7077                 public override bool Equals (object obj)
7078                 {
7079                         This t = obj as This;
7080                         if (t == null)
7081                                 return false;
7082
7083                         return true;
7084                 }
7085
7086                 protected override void CloneTo (CloneContext clonectx, Expression t)
7087                 {
7088                         // Nothing
7089                 }
7090
7091                 public override void SetHasAddressTaken ()
7092                 {
7093                         // Nothing
7094                 }
7095
7096                 public override void VerifyAssigned (ResolveContext rc)
7097                 {
7098                 }
7099                 
7100                 public override object Accept (StructuralVisitor visitor)
7101                 {
7102                         return visitor.Visit (this);
7103                 }
7104         }
7105
7106         /// <summary>
7107         ///   Represents the `__arglist' construct
7108         /// </summary>
7109         public class ArglistAccess : Expression
7110         {
7111                 public ArglistAccess (Location loc)
7112                 {
7113                         this.loc = loc;
7114                 }
7115
7116                 protected override void CloneTo (CloneContext clonectx, Expression target)
7117                 {
7118                         // nothing.
7119                 }
7120
7121                 public override bool ContainsEmitWithAwait ()
7122                 {
7123                         return false;
7124                 }
7125
7126                 public override Expression CreateExpressionTree (ResolveContext ec)
7127                 {
7128                         throw new NotSupportedException ("ET");
7129                 }
7130
7131                 protected override Expression DoResolve (ResolveContext ec)
7132                 {
7133                         eclass = ExprClass.Variable;
7134                         type = ec.Module.PredefinedTypes.RuntimeArgumentHandle.Resolve ();
7135
7136                         if (ec.HasSet (ResolveContext.Options.FieldInitializerScope) || !ec.CurrentBlock.ParametersBlock.Parameters.HasArglist) {
7137                                 ec.Report.Error (190, loc,
7138                                         "The __arglist construct is valid only within a variable argument method");
7139                         }
7140
7141                         return this;
7142                 }
7143
7144                 public override void Emit (EmitContext ec)
7145                 {
7146                         ec.Emit (OpCodes.Arglist);
7147                 }
7148
7149                 public override object Accept (StructuralVisitor visitor)
7150                 {
7151                         return visitor.Visit (this);
7152                 }
7153         }
7154
7155         /// <summary>
7156         ///   Represents the `__arglist (....)' construct
7157         /// </summary>
7158         public class Arglist : Expression
7159         {
7160                 Arguments arguments;
7161
7162                 public Arglist (Location loc)
7163                         : this (null, loc)
7164                 {
7165                 }
7166
7167                 public Arglist (Arguments args, Location l)
7168                 {
7169                         arguments = args;
7170                         loc = l;
7171                 }
7172
7173                 public Arguments Arguments {
7174                         get {
7175                                 return arguments;
7176                         }
7177                 }
7178
7179                 public MetaType[] ArgumentTypes {
7180                     get {
7181                                 if (arguments == null)
7182                                         return MetaType.EmptyTypes;
7183
7184                                 var retval = new MetaType[arguments.Count];
7185                                 for (int i = 0; i < retval.Length; i++)
7186                                         retval[i] = arguments[i].Expr.Type.GetMetaInfo ();
7187
7188                         return retval;
7189                     }
7190                 }
7191
7192                 public override bool ContainsEmitWithAwait ()
7193                 {
7194                         throw new NotImplementedException ();
7195                 }
7196                 
7197                 public override Expression CreateExpressionTree (ResolveContext ec)
7198                 {
7199                         ec.Report.Error (1952, loc, "An expression tree cannot contain a method with variable arguments");
7200                         return null;
7201                 }
7202
7203                 protected override Expression DoResolve (ResolveContext ec)
7204                 {
7205                         eclass = ExprClass.Variable;
7206                         type = InternalType.Arglist;
7207                         if (arguments != null) {
7208                                 bool dynamic;   // Can be ignored as there is always only 1 overload
7209                                 arguments.Resolve (ec, out dynamic);
7210                         }
7211
7212                         return this;
7213                 }
7214
7215                 public override void Emit (EmitContext ec)
7216                 {
7217                         if (arguments != null)
7218                                 arguments.Emit (ec);
7219                 }
7220
7221                 protected override void CloneTo (CloneContext clonectx, Expression t)
7222                 {
7223                         Arglist target = (Arglist) t;
7224
7225                         if (arguments != null)
7226                                 target.arguments = arguments.Clone (clonectx);
7227                 }
7228
7229                 public override object Accept (StructuralVisitor visitor)
7230                 {
7231                         return visitor.Visit (this);
7232                 }
7233         }
7234
7235         public class RefValueExpr : ShimExpression
7236         {
7237                 FullNamedExpression texpr;
7238
7239                 public RefValueExpr (Expression expr, FullNamedExpression texpr, Location loc)
7240                         : base (expr)
7241                 {
7242                         this.texpr = texpr;
7243                         this.loc = loc;
7244                 }
7245
7246                 public FullNamedExpression TypeExpression {
7247                         get {
7248                                 return texpr;
7249                         }
7250                 }
7251
7252                 public override bool ContainsEmitWithAwait ()
7253                 {
7254                         return false;
7255                 }
7256
7257                 protected override Expression DoResolve (ResolveContext rc)
7258                 {
7259                         expr = expr.Resolve (rc);
7260                         type = texpr.ResolveAsType (rc);
7261                         if (expr == null || type == null)
7262                                 return null;
7263
7264                         expr = Convert.ImplicitConversionRequired (rc, expr, rc.Module.PredefinedTypes.TypedReference.Resolve (), loc);
7265                         eclass = ExprClass.Value;
7266                         return this;
7267                 }
7268
7269                 public override void Emit (EmitContext ec)
7270                 {
7271                         expr.Emit (ec);
7272                         ec.Emit (OpCodes.Refanyval, type);
7273                         ec.EmitLoadFromPtr (type);
7274                 }
7275                 
7276                 public override object Accept (StructuralVisitor visitor)
7277                 {
7278                         return visitor.Visit (this);
7279                 }
7280         }
7281
7282         public class RefTypeExpr : ShimExpression
7283         {
7284                 public RefTypeExpr (Expression expr, Location loc)
7285                         : base (expr)
7286                 {
7287                         this.loc = loc;
7288                 }
7289
7290                 protected override Expression DoResolve (ResolveContext rc)
7291                 {
7292                         expr = expr.Resolve (rc);
7293                         if (expr == null)
7294                                 return null;
7295
7296                         expr = Convert.ImplicitConversionRequired (rc, expr, rc.Module.PredefinedTypes.TypedReference.Resolve (), loc);
7297                         if (expr == null)
7298                                 return null;
7299
7300                         type = rc.BuiltinTypes.Type;
7301                         eclass = ExprClass.Value;
7302                         return this;
7303                 }
7304
7305                 public override void Emit (EmitContext ec)
7306                 {
7307                         expr.Emit (ec);
7308                         ec.Emit (OpCodes.Refanytype);
7309                         var m = ec.Module.PredefinedMembers.TypeGetTypeFromHandle.Resolve (loc);
7310                         if (m != null)
7311                                 ec.Emit (OpCodes.Call, m);
7312                 }
7313                 
7314                 public override object Accept (StructuralVisitor visitor)
7315                 {
7316                         return visitor.Visit (this);
7317                 }
7318         }
7319
7320         public class MakeRefExpr : ShimExpression
7321         {
7322                 public MakeRefExpr (Expression expr, Location loc)
7323                         : base (expr)
7324                 {
7325                         this.loc = loc;
7326                 }
7327
7328                 public override bool ContainsEmitWithAwait ()
7329                 {
7330                         throw new NotImplementedException ();
7331                 }
7332
7333                 protected override Expression DoResolve (ResolveContext rc)
7334                 {
7335                         expr = expr.ResolveLValue (rc, EmptyExpression.LValueMemberAccess);
7336                         type = rc.Module.PredefinedTypes.TypedReference.Resolve ();
7337                         eclass = ExprClass.Value;
7338                         return this;
7339                 }
7340
7341                 public override void Emit (EmitContext ec)
7342                 {
7343                         ((IMemoryLocation) expr).AddressOf (ec, AddressOp.Load);
7344                         ec.Emit (OpCodes.Mkrefany, expr.Type);
7345                 }
7346                 
7347                 public override object Accept (StructuralVisitor visitor)
7348                 {
7349                         return visitor.Visit (this);
7350                 }
7351         }
7352
7353         /// <summary>
7354         ///   Implements the typeof operator
7355         /// </summary>
7356         public class TypeOf : Expression {
7357                 FullNamedExpression QueriedType;
7358                 TypeSpec typearg;
7359
7360                 public TypeOf (FullNamedExpression queried_type, Location l)
7361                 {
7362                         QueriedType = queried_type;
7363                         loc = l;
7364                 }
7365
7366                 //
7367                 // Use this constructor for any compiler generated typeof expression
7368                 //
7369                 public TypeOf (TypeSpec type, Location loc)
7370                 {
7371                         this.typearg = type;
7372                         this.loc = loc;
7373                 }
7374
7375                 #region Properties
7376
7377                 public override bool IsSideEffectFree {
7378                         get {
7379                                 return true;
7380                         }
7381                 }
7382
7383                 public TypeSpec TypeArgument {
7384                         get {
7385                                 return typearg;
7386                         }
7387                 }
7388
7389                 public FullNamedExpression TypeExpression {
7390                         get {
7391                                 return QueriedType;
7392                         }
7393                 }
7394
7395                 #endregion
7396
7397
7398                 protected override void CloneTo (CloneContext clonectx, Expression t)
7399                 {
7400                         TypeOf target = (TypeOf) t;
7401                         if (QueriedType != null)
7402                                 target.QueriedType = (FullNamedExpression) QueriedType.Clone (clonectx);
7403                 }
7404
7405                 public override bool ContainsEmitWithAwait ()
7406                 {
7407                         return false;
7408                 }
7409
7410                 public override Expression CreateExpressionTree (ResolveContext ec)
7411                 {
7412                         Arguments args = new Arguments (2);
7413                         args.Add (new Argument (this));
7414                         args.Add (new Argument (new TypeOf (new TypeExpression (type, loc), loc)));
7415                         return CreateExpressionFactoryCall (ec, "Constant", args);
7416                 }
7417
7418                 protected override Expression DoResolve (ResolveContext ec)
7419                 {
7420                         if (eclass != ExprClass.Unresolved)
7421                                 return this;
7422
7423                         if (typearg == null) {
7424                                 //
7425                                 // Pointer types are allowed without explicit unsafe, they are just tokens
7426                                 //
7427                                 using (ec.Set (ResolveContext.Options.UnsafeScope)) {
7428                                         typearg = QueriedType.ResolveAsType (ec);
7429                                 }
7430
7431                                 if (typearg == null)
7432                                         return null;
7433
7434                                 if (typearg.BuiltinType == BuiltinTypeSpec.Type.Dynamic) {
7435                                         ec.Report.Error (1962, QueriedType.Location,
7436                                                 "The typeof operator cannot be used on the dynamic type");
7437                                 }
7438                         }
7439
7440                         type = ec.BuiltinTypes.Type;
7441
7442                         // Even though what is returned is a type object, it's treated as a value by the compiler.
7443                         // In particular, 'typeof (Foo).X' is something totally different from 'Foo.X'.
7444                         eclass = ExprClass.Value;
7445                         return this;
7446                 }
7447
7448                 static bool ContainsDynamicType (TypeSpec type)
7449                 {
7450                         if (type.BuiltinType == BuiltinTypeSpec.Type.Dynamic)
7451                                 return true;
7452
7453                         var element_container = type as ElementTypeSpec;
7454                         if (element_container != null)
7455                                 return ContainsDynamicType (element_container.Element);
7456
7457                         foreach (var t in type.TypeArguments) {
7458                                 if (ContainsDynamicType (t)) {
7459                                         return true;
7460                                 }
7461                         }
7462
7463                         return false;
7464                 }
7465
7466                 public override void EncodeAttributeValue (IMemberContext rc, AttributeEncoder enc, TypeSpec targetType)
7467                 {
7468                         // Target type is not System.Type therefore must be object
7469                         // and we need to use different encoding sequence
7470                         if (targetType != type)
7471                                 enc.Encode (type);
7472
7473                         if (typearg is InflatedTypeSpec) {
7474                                 var gt = typearg;
7475                                 do {
7476                                         if (InflatedTypeSpec.ContainsTypeParameter (gt)) {
7477                                                 rc.Module.Compiler.Report.Error (416, loc, "`{0}': an attribute argument cannot use type parameters",
7478                                                         typearg.GetSignatureForError ());
7479                                                 return;
7480                                         }
7481
7482                                         gt = gt.DeclaringType;
7483                                 } while (gt != null);
7484                         }
7485
7486                         if (ContainsDynamicType (typearg)) {
7487                                 Attribute.Error_AttributeArgumentIsDynamic (rc, loc);
7488                                 return;
7489                         }
7490
7491                         enc.EncodeTypeName (typearg);
7492                 }
7493
7494                 public override void Emit (EmitContext ec)
7495                 {
7496                         ec.Emit (OpCodes.Ldtoken, typearg);
7497                         var m = ec.Module.PredefinedMembers.TypeGetTypeFromHandle.Resolve (loc);
7498                         if (m != null)
7499                                 ec.Emit (OpCodes.Call, m);
7500                 }
7501                 
7502                 public override object Accept (StructuralVisitor visitor)
7503                 {
7504                         return visitor.Visit (this);
7505                 }
7506         }
7507
7508         sealed class TypeOfMethod : TypeOfMember<MethodSpec>
7509         {
7510                 public TypeOfMethod (MethodSpec method, Location loc)
7511                         : base (method, loc)
7512                 {
7513                 }
7514
7515                 protected override Expression DoResolve (ResolveContext ec)
7516                 {
7517                         if (member.IsConstructor) {
7518                                 type = ec.Module.PredefinedTypes.ConstructorInfo.Resolve ();
7519                         } else {
7520                                 type = ec.Module.PredefinedTypes.MethodInfo.Resolve ();
7521                         }
7522
7523                         if (type == null)
7524                                 return null;
7525
7526                         return base.DoResolve (ec);
7527                 }
7528
7529                 public override void Emit (EmitContext ec)
7530                 {
7531                         ec.Emit (OpCodes.Ldtoken, member);
7532
7533                         base.Emit (ec);
7534                         ec.Emit (OpCodes.Castclass, type);
7535                 }
7536
7537                 protected override PredefinedMember<MethodSpec> GetTypeFromHandle (EmitContext ec)
7538                 {
7539                         return ec.Module.PredefinedMembers.MethodInfoGetMethodFromHandle;
7540                 }
7541
7542                 protected override PredefinedMember<MethodSpec> GetTypeFromHandleGeneric (EmitContext ec)
7543                 {
7544                         return ec.Module.PredefinedMembers.MethodInfoGetMethodFromHandle2;
7545                 }
7546         }
7547
7548         abstract class TypeOfMember<T> : Expression where T : MemberSpec
7549         {
7550                 protected readonly T member;
7551
7552                 protected TypeOfMember (T member, Location loc)
7553                 {
7554                         this.member = member;
7555                         this.loc = loc;
7556                 }
7557
7558                 public override bool IsSideEffectFree {
7559                         get {
7560                                 return true;
7561                         }
7562                 }
7563
7564                 public override bool ContainsEmitWithAwait ()
7565                 {
7566                         return false;
7567                 }
7568
7569                 public override Expression CreateExpressionTree (ResolveContext ec)
7570                 {
7571                         Arguments args = new Arguments (2);
7572                         args.Add (new Argument (this));
7573                         args.Add (new Argument (new TypeOf (type, loc)));
7574                         return CreateExpressionFactoryCall (ec, "Constant", args);
7575                 }
7576
7577                 protected override Expression DoResolve (ResolveContext ec)
7578                 {
7579                         eclass = ExprClass.Value;
7580                         return this;
7581                 }
7582
7583                 public override void Emit (EmitContext ec)
7584                 {
7585                         bool is_generic = member.DeclaringType.IsGenericOrParentIsGeneric;
7586                         PredefinedMember<MethodSpec> p;
7587                         if (is_generic) {
7588                                 p = GetTypeFromHandleGeneric (ec);
7589                                 ec.Emit (OpCodes.Ldtoken, member.DeclaringType);
7590                         } else {
7591                                 p = GetTypeFromHandle (ec);
7592                         }
7593
7594                         var mi = p.Resolve (loc);
7595                         if (mi != null)
7596                                 ec.Emit (OpCodes.Call, mi);
7597                 }
7598
7599                 protected abstract PredefinedMember<MethodSpec> GetTypeFromHandle (EmitContext ec);
7600                 protected abstract PredefinedMember<MethodSpec> GetTypeFromHandleGeneric (EmitContext ec);
7601         }
7602
7603         sealed class TypeOfField : TypeOfMember<FieldSpec>
7604         {
7605                 public TypeOfField (FieldSpec field, Location loc)
7606                         : base (field, loc)
7607                 {
7608                 }
7609
7610                 protected override Expression DoResolve (ResolveContext ec)
7611                 {
7612                         type = ec.Module.PredefinedTypes.FieldInfo.Resolve ();
7613                         if (type == null)
7614                                 return null;
7615
7616                         return base.DoResolve (ec);
7617                 }
7618
7619                 public override void Emit (EmitContext ec)
7620                 {
7621                         ec.Emit (OpCodes.Ldtoken, member);
7622                         base.Emit (ec);
7623                 }
7624
7625                 protected override PredefinedMember<MethodSpec> GetTypeFromHandle (EmitContext ec)
7626                 {
7627                         return ec.Module.PredefinedMembers.FieldInfoGetFieldFromHandle;
7628                 }
7629
7630                 protected override PredefinedMember<MethodSpec> GetTypeFromHandleGeneric (EmitContext ec)
7631                 {
7632                         return ec.Module.PredefinedMembers.FieldInfoGetFieldFromHandle2;
7633                 }
7634         }
7635
7636         /// <summary>
7637         ///   Implements the sizeof expression
7638         /// </summary>
7639         public class SizeOf : Expression {
7640                 readonly Expression texpr;
7641                 TypeSpec type_queried;
7642                 
7643                 public SizeOf (Expression queried_type, Location l)
7644                 {
7645                         this.texpr = queried_type;
7646                         loc = l;
7647                 }
7648
7649                 public override bool IsSideEffectFree {
7650                         get {
7651                                 return true;
7652                         }
7653                 }
7654
7655                 public Expression TypeExpression {
7656                         get {
7657                                 return texpr;
7658                         }
7659                 }
7660
7661                 public override bool ContainsEmitWithAwait ()
7662                 {
7663                         return false;
7664                 }
7665
7666                 public override Expression CreateExpressionTree (ResolveContext ec)
7667                 {
7668                         Error_PointerInsideExpressionTree (ec);
7669                         return null;
7670                 }
7671
7672                 protected override Expression DoResolve (ResolveContext ec)
7673                 {
7674                         type_queried = texpr.ResolveAsType (ec);
7675                         if (type_queried == null)
7676                                 return null;
7677
7678                         if (type_queried.IsEnum)
7679                                 type_queried = EnumSpec.GetUnderlyingType (type_queried);
7680
7681                         int size_of = BuiltinTypeSpec.GetSize (type_queried);
7682                         if (size_of > 0) {
7683                                 return new IntConstant (ec.BuiltinTypes, size_of, loc);
7684                         }
7685
7686                         if (!TypeManager.VerifyUnmanaged (ec.Module, type_queried, loc)){
7687                                 return null;
7688                         }
7689
7690                         if (!ec.IsUnsafe) {
7691                                 ec.Report.Error (233, loc,
7692                                         "`{0}' does not have a predefined size, therefore sizeof can only be used in an unsafe context (consider using System.Runtime.InteropServices.Marshal.SizeOf)",
7693                                         TypeManager.CSharpName (type_queried));
7694                         }
7695                         
7696                         type = ec.BuiltinTypes.Int;
7697                         eclass = ExprClass.Value;
7698                         return this;
7699                 }
7700
7701                 public override void Emit (EmitContext ec)
7702                 {
7703                         ec.Emit (OpCodes.Sizeof, type_queried);
7704                 }
7705
7706                 protected override void CloneTo (CloneContext clonectx, Expression t)
7707                 {
7708                 }
7709                 
7710                 public override object Accept (StructuralVisitor visitor)
7711                 {
7712                         return visitor.Visit (this);
7713                 }
7714         }
7715
7716         /// <summary>
7717         ///   Implements the qualified-alias-member (::) expression.
7718         /// </summary>
7719         public class QualifiedAliasMember : MemberAccess
7720         {
7721                 readonly string alias;
7722                 public static readonly string GlobalAlias = "global";
7723
7724                 public QualifiedAliasMember (string alias, string identifier, Location l)
7725                         : base (null, identifier, l)
7726                 {
7727                         this.alias = alias;
7728                 }
7729
7730                 public QualifiedAliasMember (string alias, string identifier, TypeArguments targs, Location l)
7731                         : base (null, identifier, targs, l)
7732                 {
7733                         this.alias = alias;
7734                 }
7735
7736                 public QualifiedAliasMember (string alias, string identifier, int arity, Location l)
7737                         : base (null, identifier, arity, l)
7738                 {
7739                         this.alias = alias;
7740                 }
7741
7742                 public string Alias {
7743                         get {
7744                                 return alias;
7745                         }
7746                 }
7747
7748                 public override FullNamedExpression ResolveAsTypeOrNamespace (IMemberContext ec)
7749                 {
7750                         if (alias == GlobalAlias) {
7751                                 expr = ec.Module.GlobalRootNamespace;
7752                                 return base.ResolveAsTypeOrNamespace (ec);
7753                         }
7754
7755                         int errors = ec.Module.Compiler.Report.Errors;
7756                         expr = ec.LookupNamespaceAlias (alias);
7757                         if (expr == null) {
7758                                 if (errors == ec.Module.Compiler.Report.Errors)
7759                                         ec.Module.Compiler.Report.Error (432, loc, "Alias `{0}' not found", alias);
7760                                 return null;
7761                         }
7762                         
7763                         return base.ResolveAsTypeOrNamespace (ec);
7764                 }
7765
7766                 protected override Expression DoResolve (ResolveContext ec)
7767                 {
7768                         return ResolveAsTypeOrNamespace (ec);
7769                 }
7770
7771                 public override string GetSignatureForError ()
7772                 {
7773                         string name = Name;
7774                         if (targs != null) {
7775                                 name = Name + "<" + targs.GetSignatureForError () + ">";
7776                         }
7777
7778                         return alias + "::" + name;
7779                 }
7780
7781                 public override Expression LookupNameExpression (ResolveContext rc, MemberLookupRestrictions restrictions)
7782                 {
7783                         if ((restrictions & MemberLookupRestrictions.InvocableOnly) != 0) {
7784                                 rc.Module.Compiler.Report.Error (687, loc,
7785                                         "The namespace alias qualifier `::' cannot be used to invoke a method. Consider using `.' instead",
7786                                         GetSignatureForError ());
7787
7788                                 return null;
7789                         }
7790
7791                         return DoResolve (rc);
7792                 }
7793
7794                 protected override void CloneTo (CloneContext clonectx, Expression t)
7795                 {
7796                         // Nothing 
7797                 }
7798                 
7799                 public override object Accept (StructuralVisitor visitor)
7800                 {
7801                         return visitor.Visit (this);
7802                 }
7803         }
7804
7805         /// <summary>
7806         ///   Implements the member access expression
7807         /// </summary>
7808         public class MemberAccess : ATypeNameExpression
7809         {
7810                 protected Expression expr;
7811
7812                 public MemberAccess (Expression expr, string id)
7813                         : base (id, expr.Location)
7814                 {
7815                         this.expr = expr;
7816                 }
7817
7818                 public MemberAccess (Expression expr, string identifier, Location loc)
7819                         : base (identifier, loc)
7820                 {
7821                         this.expr = expr;
7822                 }
7823
7824                 public MemberAccess (Expression expr, string identifier, TypeArguments args, Location loc)
7825                         : base (identifier, args, loc)
7826                 {
7827                         this.expr = expr;
7828                 }
7829
7830                 public MemberAccess (Expression expr, string identifier, int arity, Location loc)
7831                         : base (identifier, arity, loc)
7832                 {
7833                         this.expr = expr;
7834                 }
7835
7836                 public Expression LeftExpression {
7837                         get {
7838                                 return expr;
7839                         }
7840                 }
7841
7842                 protected override Expression DoResolve (ResolveContext rc)
7843                 {
7844                         var e = DoResolveName (rc, null);
7845
7846                         if (!rc.OmitStructFlowAnalysis) {
7847                                 var fe = e as FieldExpr;
7848                                 if (fe != null) {
7849                                         fe.VerifyAssignedStructField (rc, null);
7850                                 }
7851                         }
7852
7853                         return e;
7854                 }
7855
7856                 public override Expression DoResolveLValue (ResolveContext rc, Expression rhs)
7857                 {
7858                         var e = DoResolveName (rc, rhs);
7859
7860                         if (!rc.OmitStructFlowAnalysis) {
7861                                 var fe = e as FieldExpr;
7862                                 if (fe != null && fe.InstanceExpression is FieldExpr) {
7863                                         fe = (FieldExpr) fe.InstanceExpression;
7864                                         fe.VerifyAssignedStructField (rc, rhs);
7865                                 }
7866                         }
7867
7868                         return e;
7869                 }
7870
7871                 Expression DoResolveName (ResolveContext rc, Expression right_side)
7872                 {
7873                         Expression e = LookupNameExpression (rc, right_side == null ? MemberLookupRestrictions.ReadAccess : MemberLookupRestrictions.None);
7874                         if (e == null)
7875                                 return null;
7876
7877                         if (right_side != null) {
7878                                 if (e is TypeExpr) {
7879                                         e.Error_UnexpectedKind (rc, ResolveFlags.VariableOrValue, loc);
7880                                         return null;
7881                                 }
7882
7883                                 e = e.ResolveLValue (rc, right_side);
7884                         } else {
7885                                 e = e.Resolve (rc, ResolveFlags.VariableOrValue | ResolveFlags.Type);
7886                         }
7887
7888                         return e;
7889                 }
7890
7891                 protected virtual void Error_OperatorCannotBeApplied (ResolveContext rc, TypeSpec type)
7892                 {
7893                         if (type == InternalType.NullLiteral && rc.IsRuntimeBinder)
7894                                 rc.Report.Error (Report.RuntimeErrorId, loc, "Cannot perform member binding on `null' value");
7895                         else
7896                                 expr.Error_OperatorCannotBeApplied (rc, loc, ".", type);
7897                 }
7898
7899                 public static bool IsValidDotExpression (TypeSpec type)
7900                 {
7901                         const MemberKind dot_kinds = MemberKind.Class | MemberKind.Struct | MemberKind.Delegate | MemberKind.Enum |
7902                                 MemberKind.Interface | MemberKind.TypeParameter | MemberKind.ArrayType;
7903
7904                         return (type.Kind & dot_kinds) != 0 || type.BuiltinType == BuiltinTypeSpec.Type.Dynamic;
7905                 }
7906
7907                 public override Expression LookupNameExpression (ResolveContext rc, MemberLookupRestrictions restrictions)
7908                 {
7909                         var sn = expr as SimpleName;
7910                         const ResolveFlags flags = ResolveFlags.VariableOrValue | ResolveFlags.Type;
7911
7912                         //
7913                         // Resolve the expression with flow analysis turned off, we'll do the definite
7914                         // assignment checks later.  This is because we don't know yet what the expression
7915                         // will resolve to - it may resolve to a FieldExpr and in this case we must do the
7916                         // definite assignment check on the actual field and not on the whole struct.
7917                         //
7918                         using (rc.Set (ResolveContext.Options.OmitStructFlowAnalysis)) {
7919                                 if (sn != null) {
7920                                         expr = sn.LookupNameExpression (rc, MemberLookupRestrictions.ReadAccess | MemberLookupRestrictions.ExactArity);
7921
7922                                         //
7923                                         // Resolve expression which does have type set as we need expression type
7924                                         // with disable flow analysis as we don't know whether left side expression
7925                                         // is used as variable or type
7926                                         //
7927                                         if (expr is VariableReference || expr is ConstantExpr || expr is Linq.TransparentMemberAccess) {
7928                                                 using (rc.With (ResolveContext.Options.DoFlowAnalysis, false)) {
7929                                                         expr = expr.Resolve (rc);
7930                                                 }
7931                                         } else if (expr is TypeParameterExpr) {
7932                                                 expr.Error_UnexpectedKind (rc, flags, sn.Location);
7933                                                 expr = null;
7934                                         }
7935                                 } else {
7936                                         expr = expr.Resolve (rc, flags);
7937                                 }
7938                         }
7939
7940                         if (expr == null)
7941                                 return null;
7942
7943                         Namespace ns = expr as Namespace;
7944                         if (ns != null) {
7945                                 var retval = ns.LookupTypeOrNamespace (rc, Name, Arity, LookupMode.Normal, loc);
7946
7947                                 if (retval == null) {
7948                                         ns.Error_NamespaceDoesNotExist (rc, Name, Arity, loc);
7949                                         return null;
7950                                 }
7951
7952                                 if (HasTypeArguments)
7953                                         return new GenericTypeExpr (retval.Type, targs, loc);
7954
7955                                 return retval;
7956                         }
7957
7958                         MemberExpr me;
7959                         TypeSpec expr_type = expr.Type;
7960                         if (expr_type.BuiltinType == BuiltinTypeSpec.Type.Dynamic) {
7961                                 me = expr as MemberExpr;
7962                                 if (me != null)
7963                                         me.ResolveInstanceExpression (rc, null);
7964
7965                                 //
7966                                 // Run defined assigned checks on expressions resolved with
7967                                 // disabled flow-analysis
7968                                 //
7969                                 if (sn != null) {
7970                                         var vr = expr as VariableReference;
7971                                         if (vr != null)
7972                                                 vr.VerifyAssigned (rc);
7973                                 }
7974
7975                                 Arguments args = new Arguments (1);
7976                                 args.Add (new Argument (expr));
7977                                 return new DynamicMemberBinder (Name, args, loc);
7978                         }
7979
7980                         if (!IsValidDotExpression (expr_type)) {
7981                                 Error_OperatorCannotBeApplied (rc, expr_type);
7982                                 return null;
7983                         }
7984
7985                         var lookup_arity = Arity;
7986                         bool errorMode = false;
7987                         Expression member_lookup;
7988                         while (true) {
7989                                 member_lookup = MemberLookup (rc, errorMode, expr_type, Name, lookup_arity, restrictions, loc);
7990                                 if (member_lookup == null) {
7991                                         //
7992                                         // Try to look for extension method when member lookup failed
7993                                         //
7994                                         if (MethodGroupExpr.IsExtensionMethodArgument (expr)) {
7995                                                 var methods = rc.LookupExtensionMethod (expr_type, Name, lookup_arity);
7996                                                 if (methods != null) {
7997                                                         var emg = new ExtensionMethodGroupExpr (methods, expr, loc);
7998                                                         if (HasTypeArguments) {
7999                                                                 if (!targs.Resolve (rc))
8000                                                                         return null;
8001
8002                                                                 emg.SetTypeArguments (rc, targs);
8003                                                         }
8004
8005                                                         //
8006                                                         // Run defined assigned checks on expressions resolved with
8007                                                         // disabled flow-analysis
8008                                                         //
8009                                                         if (sn != null && !errorMode) {
8010                                                                 var vr = expr as VariableReference;
8011                                                                 if (vr != null)
8012                                                                         vr.VerifyAssigned (rc);
8013                                                         }
8014
8015                                                         // TODO: it should really skip the checks bellow
8016                                                         return emg.Resolve (rc);
8017                                                 }
8018                                         }
8019                                 }
8020
8021                                 if (errorMode) {
8022                                         if (member_lookup == null) {
8023                                                 var dep = expr_type.GetMissingDependencies ();
8024                                                 if (dep != null) {
8025                                                         ImportedTypeDefinition.Error_MissingDependency (rc, dep, loc);
8026                                                 } else if (expr is TypeExpr) {
8027                                                         base.Error_TypeDoesNotContainDefinition (rc, expr_type, Name);
8028                                                 } else {
8029                                                         Error_TypeDoesNotContainDefinition (rc, expr_type, Name);
8030                                                 }
8031
8032                                                 return null;
8033                                         }
8034
8035                                         if (member_lookup is MethodGroupExpr) {
8036                                                 // Leave it to overload resolution to report correct error
8037                                         } else if (!(member_lookup is TypeExpr)) {
8038                                                 // TODO: rc.SymbolRelatedToPreviousError
8039                                                 ErrorIsInaccesible (rc, member_lookup.GetSignatureForError (), loc);
8040                                         }
8041                                         break;
8042                                 }
8043
8044                                 if (member_lookup != null)
8045                                         break;
8046
8047                                 lookup_arity = 0;
8048                                 restrictions &= ~MemberLookupRestrictions.InvocableOnly;
8049                                 errorMode = true;
8050                         }
8051
8052                         TypeExpr texpr = member_lookup as TypeExpr;
8053                         if (texpr != null) {
8054                                 if (!(expr is TypeExpr)) {
8055                                         me = expr as MemberExpr;
8056                                         if (me == null || me.ProbeIdenticalTypeName (rc, expr, sn) == expr) {
8057                                                 rc.Report.Error (572, loc, "`{0}': cannot reference a type through an expression; try `{1}' instead",
8058                                                         Name, member_lookup.GetSignatureForError ());
8059                                                 return null;
8060                                         }
8061                                 }
8062
8063                                 if (!texpr.Type.IsAccessible (rc)) {
8064                                         rc.Report.SymbolRelatedToPreviousError (member_lookup.Type);
8065                                         ErrorIsInaccesible (rc, member_lookup.Type.GetSignatureForError (), loc);
8066                                         return null;
8067                                 }
8068
8069                                 if (HasTypeArguments) {
8070                                         return new GenericTypeExpr (member_lookup.Type, targs, loc);
8071                                 }
8072
8073                                 return member_lookup;
8074                         }
8075
8076                         me = member_lookup as MemberExpr;
8077
8078                         if (sn != null && me.IsStatic && (expr = me.ProbeIdenticalTypeName (rc, expr, sn)) != expr) {
8079                                 sn = null;
8080                         }
8081
8082                         me = me.ResolveMemberAccess (rc, expr, sn);
8083
8084                         if (Arity > 0) {
8085                                 if (!targs.Resolve (rc))
8086                                         return null;
8087
8088                                 me.SetTypeArguments (rc, targs);
8089                         }
8090
8091                         //
8092                         // Run defined assigned checks on expressions resolved with
8093                         // disabled flow-analysis
8094                         //
8095                         if (sn != null && !(me is FieldExpr && TypeSpec.IsValueType (expr_type))) {
8096                                 var vr = expr as VariableReference;
8097                                 if (vr != null)
8098                                         vr.VerifyAssigned (rc);
8099                         }
8100
8101                         return me;
8102                 }
8103
8104                 public override FullNamedExpression ResolveAsTypeOrNamespace (IMemberContext rc)
8105                 {
8106                         FullNamedExpression fexpr = expr as FullNamedExpression;
8107                         if (fexpr == null) {
8108                                 expr.ResolveAsType (rc);
8109                                 return null;
8110                         }
8111
8112                         FullNamedExpression expr_resolved = fexpr.ResolveAsTypeOrNamespace (rc);
8113
8114                         if (expr_resolved == null)
8115                                 return null;
8116
8117                         Namespace ns = expr_resolved as Namespace;
8118                         if (ns != null) {
8119                                 FullNamedExpression retval = ns.LookupTypeOrNamespace (rc, Name, Arity, LookupMode.Normal, loc);
8120
8121                                 if (retval == null) {
8122                                         ns.Error_NamespaceDoesNotExist (rc, Name, Arity, loc);
8123                                 } else if (HasTypeArguments) {
8124                                         retval = new GenericTypeExpr (retval.Type, targs, loc);
8125                                         if (retval.ResolveAsType (rc) == null)
8126                                                 return null;
8127                                 }
8128
8129                                 return retval;
8130                         }
8131
8132                         var tnew_expr = expr_resolved.ResolveAsType (rc);
8133                         if (tnew_expr == null)
8134                                 return null;
8135
8136                         TypeSpec expr_type = tnew_expr;
8137                         if (TypeManager.IsGenericParameter (expr_type)) {
8138                                 rc.Module.Compiler.Report.Error (704, loc, "A nested type cannot be specified through a type parameter `{0}'",
8139                                         tnew_expr.GetSignatureForError ());
8140                                 return null;
8141                         }
8142
8143                         var qam = this as QualifiedAliasMember;
8144                         if (qam != null) {
8145                                 rc.Module.Compiler.Report.Error (431, loc,
8146                                         "Alias `{0}' cannot be used with `::' since it denotes a type. Consider replacing `::' with `.'",
8147                                         qam.Alias);
8148
8149                         }
8150
8151                         TypeSpec nested = null;
8152                         while (expr_type != null) {
8153                                 nested = MemberCache.FindNestedType (expr_type, Name, Arity);
8154                                 if (nested == null) {
8155                                         if (expr_type == tnew_expr) {
8156                                                 Error_IdentifierNotFound (rc, expr_type, Name);
8157                                                 return null;
8158                                         }
8159
8160                                         expr_type = tnew_expr;
8161                                         nested = MemberCache.FindNestedType (expr_type, Name, Arity);
8162                                         ErrorIsInaccesible (rc, nested.GetSignatureForError (), loc);
8163                                         break;
8164                                 }
8165
8166                                 if (nested.IsAccessible (rc))
8167                                         break;
8168
8169                                 //
8170                                 // Keep looking after inaccessible candidate but only if
8171                                 // we are not in same context as the definition itself
8172                                 //
8173                                 if (expr_type.MemberDefinition == rc.CurrentMemberDefinition)
8174                                         break;
8175
8176                                 expr_type = expr_type.BaseType;
8177                         }
8178                         
8179                         TypeExpr texpr;
8180                         if (Arity > 0) {
8181                                 if (HasTypeArguments) {
8182                                         texpr = new GenericTypeExpr (nested, targs, loc);
8183                                 } else {
8184                                         texpr = new GenericOpenTypeExpr (nested, loc);
8185                                 }
8186                         } else {
8187                                 texpr = new TypeExpression (nested, loc);
8188                         }
8189
8190                         if (texpr.ResolveAsType (rc) == null)
8191                                 return null;
8192
8193                         return texpr;
8194                 }
8195
8196                 protected virtual void Error_IdentifierNotFound (IMemberContext rc, TypeSpec expr_type, string identifier)
8197                 {
8198                         var nested = MemberCache.FindNestedType (expr_type, Name, -System.Math.Max (1, Arity));
8199
8200                         if (nested != null) {
8201                                 Error_TypeArgumentsCannotBeUsed (rc, nested, Arity, expr.Location);
8202                                 return;
8203                         }
8204
8205                         var any_other_member = MemberLookup (rc, false, expr_type, Name, 0, MemberLookupRestrictions.None, loc);
8206                         if (any_other_member != null) {
8207                                 any_other_member.Error_UnexpectedKind (rc, any_other_member, "type", any_other_member.ExprClassName, loc);
8208                                 return;
8209                         }
8210
8211                         rc.Module.Compiler.Report.Error (426, loc, "The nested type `{0}' does not exist in the type `{1}'",
8212                                 Name, expr_type.GetSignatureForError ());
8213                 }
8214
8215                 protected override void Error_TypeDoesNotContainDefinition (ResolveContext ec, TypeSpec type, string name)
8216                 {
8217                         if (ec.Module.Compiler.Settings.Version > LanguageVersion.ISO_2 && !ec.IsRuntimeBinder && MethodGroupExpr.IsExtensionMethodArgument (expr)) {
8218                                 ec.Report.SymbolRelatedToPreviousError (type);
8219                                 ec.Report.Error (1061, loc,
8220                                         "Type `{0}' does not contain a definition for `{1}' and no extension method `{1}' of type `{0}' could be found (are you missing a using directive or an assembly reference?)",
8221                                         type.GetSignatureForError (), name);
8222                                 return;
8223                         }
8224
8225                         base.Error_TypeDoesNotContainDefinition (ec, type, name);
8226                 }
8227
8228                 public override string GetSignatureForError ()
8229                 {
8230                         return expr.GetSignatureForError () + "." + base.GetSignatureForError ();
8231                 }
8232
8233                 protected override void CloneTo (CloneContext clonectx, Expression t)
8234                 {
8235                         MemberAccess target = (MemberAccess) t;
8236
8237                         target.expr = expr.Clone (clonectx);
8238                 }
8239                 
8240                 public override object Accept (StructuralVisitor visitor)
8241                 {
8242                         return visitor.Visit (this);
8243                 }
8244         }
8245
8246         /// <summary>
8247         ///   Implements checked expressions
8248         /// </summary>
8249         public class CheckedExpr : Expression {
8250
8251                 public Expression Expr;
8252
8253                 public CheckedExpr (Expression e, Location l)
8254                 {
8255                         Expr = e;
8256                         loc = l;
8257                 }
8258
8259                 public override bool ContainsEmitWithAwait ()
8260                 {
8261                         return Expr.ContainsEmitWithAwait ();
8262                 }
8263                 
8264                 public override Expression CreateExpressionTree (ResolveContext ec)
8265                 {
8266                         using (ec.With (ResolveContext.Options.AllCheckStateFlags, true))
8267                                 return Expr.CreateExpressionTree (ec);
8268                 }
8269
8270                 protected override Expression DoResolve (ResolveContext ec)
8271                 {
8272                         using (ec.With (ResolveContext.Options.AllCheckStateFlags, true))
8273                                 Expr = Expr.Resolve (ec);
8274                         
8275                         if (Expr == null)
8276                                 return null;
8277
8278                         if (Expr is Constant || Expr is MethodGroupExpr || Expr is AnonymousMethodExpression || Expr is DefaultValueExpression)
8279                                 return Expr;
8280                         
8281                         eclass = Expr.eclass;
8282                         type = Expr.Type;
8283                         return this;
8284                 }
8285
8286                 public override void Emit (EmitContext ec)
8287                 {
8288                         using (ec.With (EmitContext.Options.CheckedScope, true))
8289                                 Expr.Emit (ec);
8290                 }
8291
8292                 public override void EmitBranchable (EmitContext ec, Label target, bool on_true)
8293                 {
8294                         using (ec.With (EmitContext.Options.CheckedScope, true))
8295                                 Expr.EmitBranchable (ec, target, on_true);
8296                 }
8297
8298                 public override SLE.Expression MakeExpression (BuilderContext ctx)
8299                 {
8300                         using (ctx.With (BuilderContext.Options.CheckedScope, true)) {
8301                                 return Expr.MakeExpression (ctx);
8302                         }
8303                 }
8304
8305                 protected override void CloneTo (CloneContext clonectx, Expression t)
8306                 {
8307                         CheckedExpr target = (CheckedExpr) t;
8308
8309                         target.Expr = Expr.Clone (clonectx);
8310                 }
8311
8312                 public override object Accept (StructuralVisitor visitor)
8313                 {
8314                         return visitor.Visit (this);
8315                 }
8316         }
8317
8318         /// <summary>
8319         ///   Implements the unchecked expression
8320         /// </summary>
8321         public class UnCheckedExpr : Expression {
8322
8323                 public Expression Expr;
8324
8325                 public UnCheckedExpr (Expression e, Location l)
8326                 {
8327                         Expr = e;
8328                         loc = l;
8329                 }
8330
8331                 public override bool ContainsEmitWithAwait ()
8332                 {
8333                         return Expr.ContainsEmitWithAwait ();
8334                 }
8335                 
8336                 public override Expression CreateExpressionTree (ResolveContext ec)
8337                 {
8338                         using (ec.With (ResolveContext.Options.AllCheckStateFlags, false))
8339                                 return Expr.CreateExpressionTree (ec);
8340                 }
8341
8342                 protected override Expression DoResolve (ResolveContext ec)
8343                 {
8344                         using (ec.With (ResolveContext.Options.AllCheckStateFlags, false))
8345                                 Expr = Expr.Resolve (ec);
8346
8347                         if (Expr == null)
8348                                 return null;
8349
8350                         if (Expr is Constant || Expr is MethodGroupExpr || Expr is AnonymousMethodExpression || Expr is DefaultValueExpression)
8351                                 return Expr;
8352                         
8353                         eclass = Expr.eclass;
8354                         type = Expr.Type;
8355                         return this;
8356                 }
8357
8358                 public override void Emit (EmitContext ec)
8359                 {
8360                         using (ec.With (EmitContext.Options.CheckedScope, false))
8361                                 Expr.Emit (ec);
8362                 }
8363
8364                 public override void EmitBranchable (EmitContext ec, Label target, bool on_true)
8365                 {
8366                         using (ec.With (EmitContext.Options.CheckedScope, false))
8367                                 Expr.EmitBranchable (ec, target, on_true);
8368                 }
8369
8370                 protected override void CloneTo (CloneContext clonectx, Expression t)
8371                 {
8372                         UnCheckedExpr target = (UnCheckedExpr) t;
8373
8374                         target.Expr = Expr.Clone (clonectx);
8375                 }
8376
8377                 public override object Accept (StructuralVisitor visitor)
8378                 {
8379                         return visitor.Visit (this);
8380                 }
8381         }
8382
8383         /// <summary>
8384         ///   An Element Access expression.
8385         ///
8386         ///   During semantic analysis these are transformed into 
8387         ///   IndexerAccess, ArrayAccess or a PointerArithmetic.
8388         /// </summary>
8389         public class ElementAccess : Expression
8390         {
8391                 public Arguments Arguments;
8392                 public Expression Expr;
8393
8394                 public ElementAccess (Expression e, Arguments args, Location loc)
8395                 {
8396                         Expr = e;
8397                         this.loc = loc;
8398                         this.Arguments = args;
8399                 }
8400
8401                 public override bool ContainsEmitWithAwait ()
8402                 {
8403                         return Expr.ContainsEmitWithAwait () || Arguments.ContainsEmitWithAwait ();
8404                 }
8405
8406                 //
8407                 // We perform some simple tests, and then to "split" the emit and store
8408                 // code we create an instance of a different class, and return that.
8409                 //
8410                 Expression CreateAccessExpression (ResolveContext ec)
8411                 {
8412                         if (type.IsArray)
8413                                 return (new ArrayAccess (this, loc));
8414
8415                         if (type.IsPointer)
8416                                 return MakePointerAccess (ec, type);
8417
8418                         FieldExpr fe = Expr as FieldExpr;
8419                         if (fe != null) {
8420                                 var ff = fe.Spec as FixedFieldSpec;
8421                                 if (ff != null) {
8422                                         return MakePointerAccess (ec, ff.ElementType);
8423                                 }
8424                         }
8425
8426                         var indexers = MemberCache.FindMembers (type, MemberCache.IndexerNameAlias, false);
8427                         if (indexers != null || type.BuiltinType == BuiltinTypeSpec.Type.Dynamic) {
8428                                 return new IndexerExpr (indexers, type, this);
8429                         }
8430
8431                         if (type != InternalType.ErrorType) {
8432                                 ec.Report.Error (21, loc, "Cannot apply indexing with [] to an expression of type `{0}'",
8433                                         type.GetSignatureForError ());
8434                         }
8435
8436                         return null;
8437                 }
8438
8439                 public override Expression CreateExpressionTree (ResolveContext ec)
8440                 {
8441                         Arguments args = Arguments.CreateForExpressionTree (ec, Arguments,
8442                                 Expr.CreateExpressionTree (ec));
8443
8444                         return CreateExpressionFactoryCall (ec, "ArrayIndex", args);
8445                 }
8446
8447                 Expression MakePointerAccess (ResolveContext ec, TypeSpec type)
8448                 {
8449                         if (Arguments.Count != 1){
8450                                 ec.Report.Error (196, loc, "A pointer must be indexed by only one value");
8451                                 return null;
8452                         }
8453
8454                         if (Arguments [0] is NamedArgument)
8455                                 Error_NamedArgument ((NamedArgument) Arguments[0], ec.Report);
8456
8457                         Expression p = new PointerArithmetic (Binary.Operator.Addition, Expr, Arguments [0].Expr.Resolve (ec), type, loc);
8458                         return new Indirection (p, loc);
8459                 }
8460                 
8461                 protected override Expression DoResolve (ResolveContext ec)
8462                 {
8463                         Expr = Expr.Resolve (ec);
8464                         if (Expr == null)
8465                                 return null;
8466
8467                         type = Expr.Type;
8468
8469                         // TODO: Create 1 result for Resolve and ResolveLValue ?
8470                         var res = CreateAccessExpression (ec);
8471                         if (res == null)
8472                                 return null;
8473
8474                         return res.Resolve (ec);
8475                 }
8476
8477                 public override Expression DoResolveLValue (ResolveContext ec, Expression rhs)
8478                 {
8479                         Expr = Expr.Resolve (ec);
8480                         if (Expr == null)
8481                                 return null;
8482
8483                         type = Expr.Type;
8484
8485                         var res = CreateAccessExpression (ec);
8486                         if (res == null)
8487                                 return null;
8488
8489                         bool lvalue_instance = rhs != null && type.IsStruct && (Expr is Invocation || Expr is PropertyExpr);
8490                         if (lvalue_instance) {
8491                                 Expr.Error_ValueAssignment (ec, EmptyExpression.LValueMemberAccess);
8492                         }
8493
8494                         return res.ResolveLValue (ec, rhs);
8495                 }
8496                 
8497                 public override void Emit (EmitContext ec)
8498                 {
8499                         throw new Exception ("Should never be reached");
8500                 }
8501
8502                 public static void Error_NamedArgument (NamedArgument na, Report Report)
8503                 {
8504                         Report.Error (1742, na.Location, "An element access expression cannot use named argument");
8505                 }
8506
8507                 public override string GetSignatureForError ()
8508                 {
8509                         return Expr.GetSignatureForError ();
8510                 }
8511
8512                 protected override void CloneTo (CloneContext clonectx, Expression t)
8513                 {
8514                         ElementAccess target = (ElementAccess) t;
8515
8516                         target.Expr = Expr.Clone (clonectx);
8517                         if (Arguments != null)
8518                                 target.Arguments = Arguments.Clone (clonectx);
8519                 }
8520                 
8521                 public override object Accept (StructuralVisitor visitor)
8522                 {
8523                         return visitor.Visit (this);
8524                 }
8525         }
8526
8527         /// <summary>
8528         ///   Implements array access 
8529         /// </summary>
8530         public class ArrayAccess : Expression, IDynamicAssign, IMemoryLocation {
8531                 //
8532                 // Points to our "data" repository
8533                 //
8534                 ElementAccess ea;
8535
8536                 LocalTemporary temp;
8537                 bool prepared;
8538                 bool? has_await_args;
8539                 
8540                 public ArrayAccess (ElementAccess ea_data, Location l)
8541                 {
8542                         ea = ea_data;
8543                         loc = l;
8544                 }
8545
8546                 public void AddressOf (EmitContext ec, AddressOp mode)
8547                 {
8548                         var ac = (ArrayContainer) ea.Expr.Type;
8549
8550                         LoadInstanceAndArguments (ec, false, false);
8551
8552                         if (ac.Element.IsGenericParameter && mode == AddressOp.Load)
8553                                 ec.Emit (OpCodes.Readonly);
8554
8555                         ec.EmitArrayAddress (ac);
8556                 }
8557
8558                 public override Expression CreateExpressionTree (ResolveContext ec)
8559                 {
8560                         return ea.CreateExpressionTree (ec);
8561                 }
8562
8563                 public override bool ContainsEmitWithAwait ()
8564                 {
8565                         return ea.ContainsEmitWithAwait ();
8566                 }
8567
8568                 public override Expression DoResolveLValue (ResolveContext ec, Expression right_side)
8569                 {
8570                         return DoResolve (ec);
8571                 }
8572
8573                 protected override Expression DoResolve (ResolveContext ec)
8574                 {
8575                         // dynamic is used per argument in ConvertExpressionToArrayIndex case
8576                         bool dynamic;
8577                         ea.Arguments.Resolve (ec, out dynamic);
8578
8579                         var ac = ea.Expr.Type as ArrayContainer;
8580                         int rank = ea.Arguments.Count;
8581                         if (ac.Rank != rank) {
8582                                 ec.Report.Error (22, ea.Location, "Wrong number of indexes `{0}' inside [], expected `{1}'",
8583                                           rank.ToString (), ac.Rank.ToString ());
8584                                 return null;
8585                         }
8586
8587                         type = ac.Element;
8588                         if (type.IsPointer && !ec.IsUnsafe) {
8589                                 UnsafeError (ec, ea.Location);
8590                         }
8591
8592                         foreach (Argument a in ea.Arguments) {
8593                                 if (a is NamedArgument)
8594                                         ElementAccess.Error_NamedArgument ((NamedArgument) a, ec.Report);
8595
8596                                 a.Expr = ConvertExpressionToArrayIndex (ec, a.Expr);
8597                         }
8598                         
8599                         eclass = ExprClass.Variable;
8600
8601                         return this;
8602                 }
8603
8604                 protected override void Error_NegativeArrayIndex (ResolveContext ec, Location loc)
8605                 {
8606                         ec.Report.Warning (251, 2, loc, "Indexing an array with a negative index (array indices always start at zero)");
8607                 }
8608
8609                 //
8610                 // Load the array arguments into the stack.
8611                 //
8612                 void LoadInstanceAndArguments (EmitContext ec, bool duplicateArguments, bool prepareAwait)
8613                 {
8614                         if (prepareAwait) {
8615                                 ea.Expr = ea.Expr.EmitToField (ec);
8616                         } else if (duplicateArguments) {
8617                                 ea.Expr.Emit (ec);
8618                                 ec.Emit (OpCodes.Dup);
8619
8620                                 var copy = new LocalTemporary (ea.Expr.Type);
8621                                 copy.Store (ec);
8622                                 ea.Expr = copy;
8623                         } else {
8624                                 ea.Expr.Emit (ec);
8625                         }
8626
8627                         var dup_args = ea.Arguments.Emit (ec, duplicateArguments, prepareAwait);
8628                         if (dup_args != null)
8629                                 ea.Arguments = dup_args;
8630                 }
8631
8632                 public void Emit (EmitContext ec, bool leave_copy)
8633                 {
8634                         var ac = ea.Expr.Type as ArrayContainer;
8635
8636                         if (prepared) {
8637                                 ec.EmitLoadFromPtr (type);
8638                         } else {
8639                                 if (!has_await_args.HasValue && ec.HasSet (BuilderContext.Options.AsyncBody) && ea.Arguments.ContainsEmitWithAwait ()) {
8640                                         LoadInstanceAndArguments (ec, false, true);
8641                                 }
8642
8643                                 LoadInstanceAndArguments (ec, false, false);
8644                                 ec.EmitArrayLoad (ac);
8645                         }       
8646
8647                         if (leave_copy) {
8648                                 ec.Emit (OpCodes.Dup);
8649                                 temp = new LocalTemporary (this.type);
8650                                 temp.Store (ec);
8651                         }
8652                 }
8653                 
8654                 public override void Emit (EmitContext ec)
8655                 {
8656                         Emit (ec, false);
8657                 }
8658
8659                 public void EmitAssign (EmitContext ec, Expression source, bool leave_copy, bool isCompound)
8660                 {
8661                         var ac = (ArrayContainer) ea.Expr.Type;
8662                         TypeSpec t = source.Type;
8663
8664                         has_await_args = ec.HasSet (BuilderContext.Options.AsyncBody) && (ea.Arguments.ContainsEmitWithAwait () || source.ContainsEmitWithAwait ());
8665
8666                         //
8667                         // When we are dealing with a struct, get the address of it to avoid value copy
8668                         // Same cannot be done for reference type because array covariance and the
8669                         // check in ldelema requires to specify the type of array element stored at the index
8670                         //
8671                         if (t.IsStruct && ((isCompound && !(source is DynamicExpressionStatement)) || !BuiltinTypeSpec.IsPrimitiveType (t))) {
8672                                 LoadInstanceAndArguments (ec, false, has_await_args.Value);
8673
8674                                 if (has_await_args.Value) {
8675                                         if (source.ContainsEmitWithAwait ()) {
8676                                                 source = source.EmitToField (ec);
8677                                                 isCompound = false;
8678                                                 prepared = true;
8679                                         }
8680
8681                                         LoadInstanceAndArguments (ec, isCompound, false);
8682                                 } else {
8683                                         prepared = true;
8684                                 }
8685
8686                                 ec.EmitArrayAddress (ac);
8687
8688                                 if (isCompound) {
8689                                         ec.Emit (OpCodes.Dup);
8690                                         prepared = true;
8691                                 }
8692                         } else {
8693                                 LoadInstanceAndArguments (ec, isCompound, has_await_args.Value);
8694
8695                                 if (has_await_args.Value) {
8696                                         if (source.ContainsEmitWithAwait ())
8697                                                 source = source.EmitToField (ec);
8698
8699                                         LoadInstanceAndArguments (ec, false, false);
8700                                 }
8701                         }
8702
8703                         source.Emit (ec);
8704
8705                         if (isCompound) {
8706                                 var lt = ea.Expr as LocalTemporary;
8707                                 if (lt != null)
8708                                         lt.Release (ec);
8709                         }
8710
8711                         if (leave_copy) {
8712                                 ec.Emit (OpCodes.Dup);
8713                                 temp = new LocalTemporary (this.type);
8714                                 temp.Store (ec);
8715                         }
8716
8717                         if (prepared) {
8718                                 ec.EmitStoreFromPtr (t);
8719                         } else {
8720                                 ec.EmitArrayStore (ac);
8721                         }
8722                         
8723                         if (temp != null) {
8724                                 temp.Emit (ec);
8725                                 temp.Release (ec);
8726                         }
8727                 }
8728
8729                 public override Expression EmitToField (EmitContext ec)
8730                 {
8731                         //
8732                         // Have to be specialized for arrays to get access to
8733                         // underlying element. Instead of another result copy we
8734                         // need direct access to element 
8735                         //
8736                         // Consider:
8737                         //
8738                         // CallRef (ref a[await Task.Factory.StartNew (() => 1)]);
8739                         //
8740                         ea.Expr = ea.Expr.EmitToField (ec);
8741                         return this;
8742                 }
8743
8744                 public SLE.Expression MakeAssignExpression (BuilderContext ctx, Expression source)
8745                 {
8746 #if NET_4_0 || MONODROID
8747                         return SLE.Expression.ArrayAccess (ea.Expr.MakeExpression (ctx), MakeExpressionArguments (ctx));
8748 #else
8749                         throw new NotImplementedException ();
8750 #endif
8751                 }
8752
8753                 public override SLE.Expression MakeExpression (BuilderContext ctx)
8754                 {
8755                         return SLE.Expression.ArrayIndex (ea.Expr.MakeExpression (ctx), MakeExpressionArguments (ctx));
8756                 }
8757
8758                 SLE.Expression[] MakeExpressionArguments (BuilderContext ctx)
8759                 {
8760                         using (ctx.With (BuilderContext.Options.CheckedScope, true)) {
8761                                 return Arguments.MakeExpression (ea.Arguments, ctx);
8762                         }
8763                 }
8764         }
8765
8766         //
8767         // Indexer access expression
8768         //
8769         sealed class IndexerExpr : PropertyOrIndexerExpr<IndexerSpec>, OverloadResolver.IBaseMembersProvider
8770         {
8771                 IList<MemberSpec> indexers;
8772                 Arguments arguments;
8773                 TypeSpec queried_type;
8774                 
8775                 public IndexerExpr (IList<MemberSpec> indexers, TypeSpec queriedType, ElementAccess ea)
8776                         : base (ea.Location)
8777                 {
8778                         this.indexers = indexers;
8779                         this.queried_type = queriedType;
8780                         this.InstanceExpression = ea.Expr;
8781                         this.arguments = ea.Arguments;
8782                 }
8783
8784                 #region Properties
8785
8786                 protected override Arguments Arguments {
8787                         get {
8788                                 return arguments;
8789                         }
8790                         set {
8791                                 arguments = value;
8792                         }
8793                 }
8794
8795                 protected override TypeSpec DeclaringType {
8796                         get {
8797                                 return best_candidate.DeclaringType;
8798                         }
8799                 }
8800
8801                 public override bool IsInstance {
8802                         get {
8803                                 return true;
8804                         }
8805                 }
8806
8807                 public override bool IsStatic {
8808                         get {
8809                                 return false;
8810                         }
8811                 }
8812
8813                 public override string KindName {
8814                         get { return "indexer"; }
8815                 }
8816
8817                 public override string Name {
8818                         get {
8819                                 return "this";
8820                         }
8821                 }
8822
8823                 #endregion
8824
8825                 public override bool ContainsEmitWithAwait ()
8826                 {
8827                         return base.ContainsEmitWithAwait () || arguments.ContainsEmitWithAwait ();
8828                 }
8829
8830                 public override Expression CreateExpressionTree (ResolveContext ec)
8831                 {
8832                         Arguments args = Arguments.CreateForExpressionTree (ec, arguments,
8833                                 InstanceExpression.CreateExpressionTree (ec),
8834                                 new TypeOfMethod (Getter, loc));
8835
8836                         return CreateExpressionFactoryCall (ec, "Call", args);
8837                 }
8838         
8839                 public override void EmitAssign (EmitContext ec, Expression source, bool leave_copy, bool isCompound)
8840                 {
8841                         LocalTemporary await_source_arg = null;
8842
8843                         if (isCompound) {
8844                                 emitting_compound_assignment = true;
8845                                 if (source is DynamicExpressionStatement) {
8846                                         Emit (ec, false);
8847                                 } else {
8848                                         source.Emit (ec);
8849                                 }
8850                                 emitting_compound_assignment = false;
8851
8852                                 if (has_await_arguments) {
8853                                         await_source_arg = new LocalTemporary (Type);
8854                                         await_source_arg.Store (ec);
8855
8856                                         arguments.Add (new Argument (await_source_arg));
8857
8858                                         if (leave_copy) {
8859                                                 temp = await_source_arg;
8860                                         }
8861
8862                                         has_await_arguments = false;
8863                                 } else {
8864                                         arguments = null;
8865
8866                                         if (leave_copy) {
8867                                                 ec.Emit (OpCodes.Dup);
8868                                                 temp = new LocalTemporary (Type);
8869                                                 temp.Store (ec);
8870                                         }
8871                                 }
8872                         } else {
8873                                 if (leave_copy) {
8874                                         if (ec.HasSet (BuilderContext.Options.AsyncBody) && (arguments.ContainsEmitWithAwait () || source.ContainsEmitWithAwait ())) {
8875                                                 source = source.EmitToField (ec);
8876                                         } else {
8877                                                 temp = new LocalTemporary (Type);
8878                                                 source.Emit (ec);
8879                                                 temp.Store (ec);
8880                                                 source = temp;
8881                                         }
8882                                 }
8883
8884                                 arguments.Add (new Argument (source));
8885                         }
8886
8887                         var call = new CallEmitter ();
8888                         call.InstanceExpression = InstanceExpression;
8889                         if (arguments == null)
8890                                 call.InstanceExpressionOnStack = true;
8891
8892                         call.Emit (ec, Setter, arguments, loc);
8893
8894                         if (temp != null) {
8895                                 temp.Emit (ec);
8896                                 temp.Release (ec);
8897                         } else if (leave_copy) {
8898                                 source.Emit (ec);
8899                         }
8900
8901                         if (await_source_arg != null) {
8902                                 await_source_arg.Release (ec);
8903                         }
8904                 }
8905
8906                 public override string GetSignatureForError ()
8907                 {
8908                         return best_candidate.GetSignatureForError ();
8909                 }
8910                 
8911                 public override SLE.Expression MakeAssignExpression (BuilderContext ctx, Expression source)
8912                 {
8913 #if STATIC
8914                         throw new NotSupportedException ();
8915 #else
8916                         var value = new[] { source.MakeExpression (ctx) };
8917                         var args = Arguments.MakeExpression (arguments, ctx).Concat (value);
8918 #if NET_4_0 || MONODROID
8919                         return SLE.Expression.Block (
8920                                         SLE.Expression.Call (InstanceExpression.MakeExpression (ctx), (MethodInfo) Setter.GetMetaInfo (), args),
8921                                         value [0]);
8922 #else
8923                         return args.First ();
8924 #endif
8925 #endif
8926                 }
8927
8928                 public override SLE.Expression MakeExpression (BuilderContext ctx)
8929                 {
8930 #if STATIC
8931                         return base.MakeExpression (ctx);
8932 #else
8933                         var args = Arguments.MakeExpression (arguments, ctx);
8934                         return SLE.Expression.Call (InstanceExpression.MakeExpression (ctx), (MethodInfo) Getter.GetMetaInfo (), args);
8935 #endif
8936                 }
8937
8938                 protected override Expression OverloadResolve (ResolveContext rc, Expression right_side)
8939                 {
8940                         if (best_candidate != null)
8941                                 return this;
8942
8943                         eclass = ExprClass.IndexerAccess;
8944
8945                         bool dynamic;
8946                         arguments.Resolve (rc, out dynamic);
8947
8948                         if (indexers == null && InstanceExpression.Type.BuiltinType == BuiltinTypeSpec.Type.Dynamic) {
8949                                 dynamic = true;
8950                         } else {
8951                                 var res = new OverloadResolver (indexers, OverloadResolver.Restrictions.None, loc);
8952                                 res.BaseMembersProvider = this;
8953                                 res.InstanceQualifier = this;
8954
8955                                 // TODO: Do I need 2 argument sets?
8956                                 best_candidate = res.ResolveMember<IndexerSpec> (rc, ref arguments);
8957                                 if (best_candidate != null)
8958                                         type = res.BestCandidateReturnType;
8959                                 else if (!res.BestCandidateIsDynamic)
8960                                         return null;
8961                         }
8962
8963                         //
8964                         // It has dynamic arguments
8965                         //
8966                         if (dynamic) {
8967                                 Arguments args = new Arguments (arguments.Count + 1);
8968                                 if (IsBase) {
8969                                         rc.Report.Error (1972, loc,
8970                                                 "The indexer base access cannot be dynamically dispatched. Consider casting the dynamic arguments or eliminating the base access");
8971                                 } else {
8972                                         args.Add (new Argument (InstanceExpression));
8973                                 }
8974                                 args.AddRange (arguments);
8975
8976                                 best_candidate = null;
8977                                 return new DynamicIndexBinder (args, loc);
8978                         }
8979
8980                         //
8981                         // Try to avoid resolving left expression again
8982                         //
8983                         if (right_side != null)
8984                                 ResolveInstanceExpression (rc, right_side);
8985
8986                         return this;
8987                 }
8988
8989                 protected override void CloneTo (CloneContext clonectx, Expression t)
8990                 {
8991                         IndexerExpr target = (IndexerExpr) t;
8992
8993                         if (arguments != null)
8994                                 target.arguments = arguments.Clone (clonectx);
8995                 }
8996
8997                 public override void SetTypeArguments (ResolveContext ec, TypeArguments ta)
8998                 {
8999                         Error_TypeArgumentsCannotBeUsed (ec, "indexer", GetSignatureForError (), loc);
9000                 }
9001
9002                 #region IBaseMembersProvider Members
9003
9004                 IList<MemberSpec> OverloadResolver.IBaseMembersProvider.GetBaseMembers (TypeSpec baseType)
9005                 {
9006                         return baseType == null ? null : MemberCache.FindMembers (baseType, MemberCache.IndexerNameAlias, false);
9007                 }
9008
9009                 IParametersMember OverloadResolver.IBaseMembersProvider.GetOverrideMemberParameters (MemberSpec member)
9010                 {
9011                         if (queried_type == member.DeclaringType)
9012                                 return null;
9013
9014                         var filter = new MemberFilter (MemberCache.IndexerNameAlias, 0, MemberKind.Indexer, ((IndexerSpec) member).Parameters, null);
9015                         return MemberCache.FindMember (queried_type, filter, BindingRestriction.InstanceOnly | BindingRestriction.OverrideOnly) as IParametersMember;
9016                 }
9017
9018                 MethodGroupExpr OverloadResolver.IBaseMembersProvider.LookupExtensionMethod (ResolveContext rc)
9019                 {
9020                         return null;
9021                 }
9022
9023                 #endregion
9024         }
9025
9026         //
9027         // A base access expression
9028         //
9029         public class BaseThis : This
9030         {
9031                 public BaseThis (Location loc)
9032                         : base (loc)
9033                 {
9034                 }
9035
9036                 public BaseThis (TypeSpec type, Location loc)
9037                         : base (loc)
9038                 {
9039                         this.type = type;
9040                         eclass = ExprClass.Variable;
9041                 }
9042
9043                 #region Properties
9044
9045                 public override string Name {
9046                         get {
9047                                 return "base";
9048                         }
9049                 }
9050
9051                 #endregion
9052
9053                 public override Expression CreateExpressionTree (ResolveContext ec)
9054                 {
9055                         ec.Report.Error (831, loc, "An expression tree may not contain a base access");
9056                         return base.CreateExpressionTree (ec);
9057                 }
9058
9059                 public override void Emit (EmitContext ec)
9060                 {
9061                         base.Emit (ec);
9062
9063                         var context_type = ec.CurrentType;
9064                         if (context_type.IsStruct) {
9065                                 ec.Emit (OpCodes.Ldobj, context_type);
9066                                 ec.Emit (OpCodes.Box, context_type);
9067                         }
9068                 }
9069
9070                 protected override void Error_ThisNotAvailable (ResolveContext ec)
9071                 {
9072                         if (ec.IsStatic) {
9073                                 ec.Report.Error (1511, loc, "Keyword `base' is not available in a static method");
9074                         } else {
9075                                 ec.Report.Error (1512, loc, "Keyword `base' is not available in the current context");
9076                         }
9077                 }
9078
9079                 public override void ResolveBase (ResolveContext ec)
9080                 {
9081                         base.ResolveBase (ec);
9082                         type = ec.CurrentType.BaseType;
9083                 }
9084
9085                 public override object Accept (StructuralVisitor visitor)
9086                 {
9087                         return visitor.Visit (this);
9088                 }
9089         }
9090
9091         /// <summary>
9092         ///   This class exists solely to pass the Type around and to be a dummy
9093         ///   that can be passed to the conversion functions (this is used by
9094         ///   foreach implementation to typecast the object return value from
9095         ///   get_Current into the proper type.  All code has been generated and
9096         ///   we only care about the side effect conversions to be performed
9097         ///
9098         ///   This is also now used as a placeholder where a no-action expression
9099         ///   is needed (the `New' class).
9100         /// </summary>
9101         public class EmptyExpression : Expression
9102         {
9103                 sealed class OutAccessExpression : EmptyExpression
9104                 {
9105                         public OutAccessExpression (TypeSpec t)
9106                                 : base (t)
9107                         {
9108                         }
9109
9110                         public override Expression DoResolveLValue (ResolveContext rc, Expression right_side)
9111                         {
9112                                 rc.Report.Error (206, right_side.Location,
9113                                         "A property, indexer or dynamic member access may not be passed as `ref' or `out' parameter");
9114
9115                                 return null;
9116                         }
9117                 }
9118
9119                 public static readonly EmptyExpression LValueMemberAccess = new EmptyExpression (InternalType.FakeInternalType);
9120                 public static readonly EmptyExpression LValueMemberOutAccess = new EmptyExpression (InternalType.FakeInternalType);
9121                 public static readonly EmptyExpression UnaryAddress = new EmptyExpression (InternalType.FakeInternalType);
9122                 public static readonly EmptyExpression EventAddition = new EmptyExpression (InternalType.FakeInternalType);
9123                 public static readonly EmptyExpression EventSubtraction = new EmptyExpression (InternalType.FakeInternalType);
9124                 public static readonly EmptyExpression MissingValue = new EmptyExpression (InternalType.FakeInternalType);
9125                 public static readonly Expression Null = new EmptyExpression (InternalType.FakeInternalType);
9126                 public static readonly EmptyExpression OutAccess = new OutAccessExpression (InternalType.FakeInternalType);
9127
9128                 public EmptyExpression (TypeSpec t)
9129                 {
9130                         type = t;
9131                         eclass = ExprClass.Value;
9132                         loc = Location.Null;
9133                 }
9134
9135                 public override bool ContainsEmitWithAwait ()
9136                 {
9137                         return false;
9138                 }
9139
9140                 public override Expression CreateExpressionTree (ResolveContext ec)
9141                 {
9142                         throw new NotSupportedException ("ET");
9143                 }
9144                 
9145                 protected override Expression DoResolve (ResolveContext ec)
9146                 {
9147                         return this;
9148                 }
9149
9150                 public override void Emit (EmitContext ec)
9151                 {
9152                         // nothing, as we only exist to not do anything.
9153                 }
9154
9155                 public override void EmitSideEffect (EmitContext ec)
9156                 {
9157                 }
9158
9159                 public override object Accept (StructuralVisitor visitor)
9160                 {
9161                         return visitor.Visit (this);
9162                 }
9163         }
9164         
9165         sealed class EmptyAwaitExpression : EmptyExpression
9166         {
9167                 public EmptyAwaitExpression (TypeSpec type)
9168                         : base (type)
9169                 {
9170                 }
9171                 
9172                 public override bool ContainsEmitWithAwait ()
9173                 {
9174                         return true;
9175                 }
9176         }
9177         
9178         //
9179         // Empty statement expression
9180         //
9181         public sealed class EmptyExpressionStatement : ExpressionStatement
9182         {
9183                 public static readonly EmptyExpressionStatement Instance = new EmptyExpressionStatement ();
9184
9185                 private EmptyExpressionStatement ()
9186                 {
9187                         loc = Location.Null;
9188                 }
9189
9190                 public override bool ContainsEmitWithAwait ()
9191                 {
9192                         return false;
9193                 }
9194
9195                 public override Expression CreateExpressionTree (ResolveContext ec)
9196                 {
9197                         return null;
9198                 }
9199
9200                 public override void EmitStatement (EmitContext ec)
9201                 {
9202                         // Do nothing
9203                 }
9204
9205                 protected override Expression DoResolve (ResolveContext ec)
9206                 {
9207                         eclass = ExprClass.Value;
9208                         type = ec.BuiltinTypes.Object;
9209                         return this;
9210                 }
9211
9212                 public override void Emit (EmitContext ec)
9213                 {
9214                         // Do nothing
9215                 }
9216                 
9217                 public override object Accept (StructuralVisitor visitor)
9218                 {
9219                         return visitor.Visit (this);
9220                 }
9221         }
9222
9223         public class ErrorExpression : EmptyExpression
9224         {
9225                 public static readonly ErrorExpression Instance = new ErrorExpression ();
9226
9227                 private ErrorExpression ()
9228                         : base (InternalType.ErrorType)
9229                 {
9230                 }
9231
9232                 public override Expression CreateExpressionTree (ResolveContext ec)
9233                 {
9234                         return this;
9235                 }
9236
9237                 public override Expression DoResolveLValue (ResolveContext rc, Expression right_side)
9238                 {
9239                         return this;
9240                 }
9241
9242                 public override void Error_ValueAssignment (ResolveContext rc, Expression rhs)
9243                 {
9244                 }
9245
9246                 public override void Error_UnexpectedKind (ResolveContext ec, ResolveFlags flags, Location loc)
9247                 {
9248                 }
9249
9250                 public override void Error_ValueCannotBeConverted (ResolveContext ec, TypeSpec target, bool expl)
9251                 {
9252                 }
9253
9254                 public override void Error_OperatorCannotBeApplied (ResolveContext rc, Location loc, string oper, TypeSpec t)
9255                 {
9256                 }
9257                 
9258                 public override object Accept (StructuralVisitor visitor)
9259                 {
9260                         return visitor.Visit (this);
9261                 }
9262         }
9263
9264         public class UserCast : Expression {
9265                 MethodSpec method;
9266                 Expression source;
9267                 
9268                 public UserCast (MethodSpec method, Expression source, Location l)
9269                 {
9270                         this.method = method;
9271                         this.source = source;
9272                         type = method.ReturnType;
9273                         loc = l;
9274                 }
9275
9276                 public Expression Source {
9277                         get {
9278                                 return source;
9279                         }
9280                 }
9281
9282                 public override bool ContainsEmitWithAwait ()
9283                 {
9284                         return source.ContainsEmitWithAwait ();
9285                 }
9286
9287                 public override Expression CreateExpressionTree (ResolveContext ec)
9288                 {
9289                         Arguments args = new Arguments (3);
9290                         args.Add (new Argument (source.CreateExpressionTree (ec)));
9291                         args.Add (new Argument (new TypeOf (type, loc)));
9292                         args.Add (new Argument (new TypeOfMethod (method, loc)));
9293                         return CreateExpressionFactoryCall (ec, "Convert", args);
9294                 }
9295                         
9296                 protected override Expression DoResolve (ResolveContext ec)
9297                 {
9298                         ObsoleteAttribute oa = method.GetAttributeObsolete ();
9299                         if (oa != null)
9300                                 AttributeTester.Report_ObsoleteMessage (oa, GetSignatureForError (), loc, ec.Report);
9301
9302                         eclass = ExprClass.Value;
9303                         return this;
9304                 }
9305
9306                 public override void Emit (EmitContext ec)
9307                 {
9308                         source.Emit (ec);
9309                         ec.Emit (OpCodes.Call, method);
9310                 }
9311
9312                 public override string GetSignatureForError ()
9313                 {
9314                         return TypeManager.CSharpSignature (method);
9315                 }
9316
9317                 public override SLE.Expression MakeExpression (BuilderContext ctx)
9318                 {
9319 #if STATIC
9320                         return base.MakeExpression (ctx);
9321 #else
9322                         return SLE.Expression.Convert (source.MakeExpression (ctx), type.GetMetaInfo (), (MethodInfo) method.GetMetaInfo ());
9323 #endif
9324                 }
9325         }
9326
9327         //
9328         // Holds additional type specifiers like ?, *, []
9329         //
9330         public class ComposedTypeSpecifier
9331         {
9332                 public static readonly ComposedTypeSpecifier SingleDimension = new ComposedTypeSpecifier (1, Location.Null);
9333
9334                 public readonly int Dimension;
9335                 public readonly Location Location;
9336
9337                 public ComposedTypeSpecifier (int specifier, Location loc)
9338                 {
9339                         this.Dimension = specifier;
9340                         this.Location = loc;
9341                 }
9342
9343                 #region Properties
9344                 public bool IsNullable {
9345                         get {
9346                                 return Dimension == -1;
9347                         }
9348                 }
9349
9350                 public bool IsPointer {
9351                         get {
9352                                 return Dimension == -2;
9353                         }
9354                 }
9355
9356                 public ComposedTypeSpecifier Next { get; set; }
9357
9358                 #endregion
9359
9360                 public static ComposedTypeSpecifier CreateArrayDimension (int dimension, Location loc)
9361                 {
9362                         return new ComposedTypeSpecifier (dimension, loc);
9363                 }
9364
9365                 public static ComposedTypeSpecifier CreateNullable (Location loc)
9366                 {
9367                         return new ComposedTypeSpecifier (-1, loc);
9368                 }
9369
9370                 public static ComposedTypeSpecifier CreatePointer (Location loc)
9371                 {
9372                         return new ComposedTypeSpecifier (-2, loc);
9373                 }
9374
9375                 public string GetSignatureForError ()
9376                 {
9377                         string s =
9378                                 IsPointer ? "*" :
9379                                 IsNullable ? "?" :
9380                                 ArrayContainer.GetPostfixSignature (Dimension);
9381
9382                         return Next != null ? s + Next.GetSignatureForError () : s;
9383                 }
9384         }
9385
9386         // <summary>
9387         //   This class is used to "construct" the type during a typecast
9388         //   operation.  Since the Type.GetType class in .NET can parse
9389         //   the type specification, we just use this to construct the type
9390         //   one bit at a time.
9391         // </summary>
9392         public class ComposedCast : TypeExpr {
9393                 FullNamedExpression left;
9394                 ComposedTypeSpecifier spec;
9395                 
9396                 public ComposedCast (FullNamedExpression left, ComposedTypeSpecifier spec)
9397                 {
9398                         if (spec == null)
9399                                 throw new ArgumentNullException ("spec");
9400
9401                         this.left = left;
9402                         this.spec = spec;
9403                         this.loc = spec.Location;
9404                 }
9405
9406                 public override TypeSpec ResolveAsType (IMemberContext ec)
9407                 {
9408                         type = left.ResolveAsType (ec);
9409                         if (type == null)
9410                                 return null;
9411
9412                         eclass = ExprClass.Type;
9413
9414                         var single_spec = spec;
9415
9416                         if (single_spec.IsNullable) {
9417                                 type = new Nullable.NullableType (type, loc).ResolveAsType (ec);
9418                                 if (type == null)
9419                                         return null;
9420
9421                                 single_spec = single_spec.Next;
9422                         } else if (single_spec.IsPointer) {
9423                                 if (!TypeManager.VerifyUnmanaged (ec.Module, type, loc))
9424                                         return null;
9425
9426                                 if (!ec.IsUnsafe) {
9427                                         UnsafeError (ec.Module.Compiler.Report, loc);
9428                                 }
9429
9430                                 do {
9431                                         type = PointerContainer.MakeType (ec.Module, type);
9432                                         single_spec = single_spec.Next;
9433                                 } while (single_spec != null && single_spec.IsPointer);
9434                         }
9435
9436                         if (single_spec != null && single_spec.Dimension > 0) {
9437                                 if (type.IsSpecialRuntimeType) {
9438                                         ec.Module.Compiler.Report.Error (611, loc, "Array elements cannot be of type `{0}'", type.GetSignatureForError ());
9439                                 } else if (type.IsStatic) {
9440                                         ec.Module.Compiler.Report.SymbolRelatedToPreviousError (type);
9441                                         ec.Module.Compiler.Report.Error (719, loc, "Array elements cannot be of static type `{0}'",
9442                                                 type.GetSignatureForError ());
9443                                 } else {
9444                                         MakeArray (ec.Module, single_spec);
9445                                 }
9446                         }
9447
9448                         return type;
9449                 }
9450
9451                 void MakeArray (ModuleContainer module, ComposedTypeSpecifier spec)
9452                 {
9453                         if (spec.Next != null)
9454                                 MakeArray (module, spec.Next);
9455
9456                         type = ArrayContainer.MakeType (module, type, spec.Dimension);
9457                 }
9458
9459                 public override string GetSignatureForError ()
9460                 {
9461                         return left.GetSignatureForError () + spec.GetSignatureForError ();
9462                 }
9463
9464                 public override object Accept (StructuralVisitor visitor)
9465                 {
9466                         return visitor.Visit (this);
9467                 }
9468         }
9469
9470         class FixedBufferPtr : Expression
9471         {
9472                 readonly Expression array;
9473
9474                 public FixedBufferPtr (Expression array, TypeSpec array_type, Location l)
9475                 {
9476                         this.type = array_type;
9477                         this.array = array;
9478                         this.loc = l;
9479                 }
9480
9481                 public override bool ContainsEmitWithAwait ()
9482                 {
9483                         throw new NotImplementedException ();
9484                 }
9485
9486                 public override Expression CreateExpressionTree (ResolveContext ec)
9487                 {
9488                         Error_PointerInsideExpressionTree (ec);
9489                         return null;
9490                 }
9491
9492                 public override void Emit(EmitContext ec)
9493                 {
9494                         array.Emit (ec);
9495                 }
9496
9497                 protected override Expression DoResolve (ResolveContext ec)
9498                 {
9499                         type = PointerContainer.MakeType (ec.Module, type);
9500                         eclass = ExprClass.Value;
9501                         return this;
9502                 }
9503         }
9504
9505
9506         //
9507         // This class is used to represent the address of an array, used
9508         // only by the Fixed statement, this generates "&a [0]" construct
9509         // for fixed (char *pa = a)
9510         //
9511         class ArrayPtr : FixedBufferPtr
9512         {
9513                 public ArrayPtr (Expression array, TypeSpec array_type, Location l):
9514                         base (array, array_type, l)
9515                 {
9516                 }
9517
9518                 public override void Emit (EmitContext ec)
9519                 {
9520                         base.Emit (ec);
9521                         
9522                         ec.EmitInt (0);
9523                         ec.Emit (OpCodes.Ldelema, ((PointerContainer) type).Element);
9524                 }
9525         }
9526
9527         //
9528         // Encapsulates a conversion rules required for array indexes
9529         //
9530         public class ArrayIndexCast : TypeCast
9531         {
9532                 public ArrayIndexCast (Expression expr, TypeSpec returnType)
9533                         : base (expr, returnType)
9534                 {
9535                         if (expr.Type == returnType) // int -> int
9536                                 throw new ArgumentException ("unnecessary array index conversion");
9537                 }
9538
9539                 public override Expression CreateExpressionTree (ResolveContext ec)
9540                 {
9541                         using (ec.Set (ResolveContext.Options.CheckedScope)) {
9542                                 return base.CreateExpressionTree (ec);
9543                         }
9544                 }
9545
9546                 public override void Emit (EmitContext ec)
9547                 {
9548                         child.Emit (ec);
9549
9550                         switch (child.Type.BuiltinType) {
9551                         case BuiltinTypeSpec.Type.UInt:
9552                                 ec.Emit (OpCodes.Conv_U);
9553                                 break;
9554                         case BuiltinTypeSpec.Type.Long:
9555                                 ec.Emit (OpCodes.Conv_Ovf_I);
9556                                 break;
9557                         case BuiltinTypeSpec.Type.ULong:
9558                                 ec.Emit (OpCodes.Conv_Ovf_I_Un);
9559                                 break;
9560                         default:
9561                                 throw new InternalErrorException ("Cannot emit cast to unknown array element type", type);
9562                         }
9563                 }
9564         }
9565
9566         //
9567         // Implements the `stackalloc' keyword
9568         //
9569         public class StackAlloc : Expression {
9570                 TypeSpec otype;
9571                 Expression t;
9572                 Expression count;
9573                 
9574                 public StackAlloc (Expression type, Expression count, Location l)
9575                 {
9576                         t = type;
9577                         this.count = count;
9578                         loc = l;
9579                 }
9580
9581                 public Expression TypeExpression {
9582                         get {
9583                                 return this.t;
9584                         }
9585                 }
9586
9587                 public Expression CountExpression {
9588                         get {
9589                                 return this.count;
9590                         }
9591                 }
9592
9593                 public override bool ContainsEmitWithAwait ()
9594                 {
9595                         return false;
9596                 }
9597
9598                 public override Expression CreateExpressionTree (ResolveContext ec)
9599                 {
9600                         throw new NotSupportedException ("ET");
9601                 }
9602
9603                 protected override Expression DoResolve (ResolveContext ec)
9604                 {
9605                         count = count.Resolve (ec);
9606                         if (count == null)
9607                                 return null;
9608                         
9609                         if (count.Type.BuiltinType != BuiltinTypeSpec.Type.UInt){
9610                                 count = Convert.ImplicitConversionRequired (ec, count, ec.BuiltinTypes.Int, loc);
9611                                 if (count == null)
9612                                         return null;
9613                         }
9614
9615                         Constant c = count as Constant;
9616                         if (c != null && c.IsNegative) {
9617                                 ec.Report.Error (247, loc, "Cannot use a negative size with stackalloc");
9618                         }
9619
9620                         if (ec.HasAny (ResolveContext.Options.CatchScope | ResolveContext.Options.FinallyScope)) {
9621                                 ec.Report.Error (255, loc, "Cannot use stackalloc in finally or catch");
9622                         }
9623
9624                         otype = t.ResolveAsType (ec);
9625                         if (otype == null)
9626                                 return null;
9627
9628                         if (!TypeManager.VerifyUnmanaged (ec.Module, otype, loc))
9629                                 return null;
9630
9631                         type = PointerContainer.MakeType (ec.Module, otype);
9632                         eclass = ExprClass.Value;
9633
9634                         return this;
9635                 }
9636
9637                 public override void Emit (EmitContext ec)
9638                 {
9639                         int size = BuiltinTypeSpec.GetSize (otype);
9640
9641                         count.Emit (ec);
9642
9643                         if (size == 0)
9644                                 ec.Emit (OpCodes.Sizeof, otype);
9645                         else
9646                                 ec.EmitInt (size);
9647
9648                         ec.Emit (OpCodes.Mul_Ovf_Un);
9649                         ec.Emit (OpCodes.Localloc);
9650                 }
9651
9652                 protected override void CloneTo (CloneContext clonectx, Expression t)
9653                 {
9654                         StackAlloc target = (StackAlloc) t;
9655                         target.count = count.Clone (clonectx);
9656                         target.t = t.Clone (clonectx);
9657                 }
9658                 
9659                 public override object Accept (StructuralVisitor visitor)
9660                 {
9661                         return visitor.Visit (this);
9662                 }
9663         }
9664
9665         //
9666         // An object initializer expression
9667         //
9668         public class ElementInitializer : Assign
9669         {
9670                 public readonly string Name;
9671
9672                 public ElementInitializer (string name, Expression initializer, Location loc)
9673                         : base (null, initializer, loc)
9674                 {
9675                         this.Name = name;
9676                 }
9677                 
9678                 protected override void CloneTo (CloneContext clonectx, Expression t)
9679                 {
9680                         ElementInitializer target = (ElementInitializer) t;
9681                         target.source = source.Clone (clonectx);
9682                 }
9683
9684                 public override Expression CreateExpressionTree (ResolveContext ec)
9685                 {
9686                         Arguments args = new Arguments (2);
9687                         FieldExpr fe = target as FieldExpr;
9688                         if (fe != null)
9689                                 args.Add (new Argument (fe.CreateTypeOfExpression ()));
9690                         else
9691                                 args.Add (new Argument (((PropertyExpr) target).CreateSetterTypeOfExpression (ec)));
9692
9693                         string mname;
9694                         Expression arg_expr;
9695                         var cinit = source as CollectionOrObjectInitializers;
9696                         if (cinit == null) {
9697                                 mname = "Bind";
9698                                 arg_expr = source.CreateExpressionTree (ec);
9699                         } else {
9700                                 mname = cinit.IsEmpty || cinit.Initializers[0] is ElementInitializer ? "MemberBind" : "ListBind";
9701                                 arg_expr = cinit.CreateExpressionTree (ec, !cinit.IsEmpty);
9702                         }
9703
9704                         args.Add (new Argument (arg_expr));
9705                         return CreateExpressionFactoryCall (ec, mname, args);
9706                 }
9707
9708                 protected override Expression DoResolve (ResolveContext ec)
9709                 {
9710                         if (source == null)
9711                                 return EmptyExpressionStatement.Instance;
9712
9713                         var t = ec.CurrentInitializerVariable.Type;
9714                         if (t.BuiltinType == BuiltinTypeSpec.Type.Dynamic) {
9715                                 Arguments args = new Arguments (1);
9716                                 args.Add (new Argument (ec.CurrentInitializerVariable));
9717                                 target = new DynamicMemberBinder (Name, args, loc);
9718                         } else {
9719
9720                                 var member = MemberLookup (ec, false, t, Name, 0, MemberLookupRestrictions.ExactArity, loc);
9721                                 if (member == null) {
9722                                         member = Expression.MemberLookup (ec, true, t, Name, 0, MemberLookupRestrictions.ExactArity, loc);
9723
9724                                         if (member != null) {
9725                                                 // TODO: ec.Report.SymbolRelatedToPreviousError (member);
9726                                                 ErrorIsInaccesible (ec, member.GetSignatureForError (), loc);
9727                                                 return null;
9728                                         }
9729                                 }
9730
9731                                 if (member == null) {
9732                                         Error_TypeDoesNotContainDefinition (ec, loc, t, Name);
9733                                         return null;
9734                                 }
9735
9736                                 if (!(member is PropertyExpr || member is FieldExpr)) {
9737                                         ec.Report.Error (1913, loc,
9738                                                 "Member `{0}' cannot be initialized. An object initializer may only be used for fields, or properties",
9739                                                 member.GetSignatureForError ());
9740
9741                                         return null;
9742                                 }
9743
9744                                 var me = member as MemberExpr;
9745                                 if (me.IsStatic) {
9746                                         ec.Report.Error (1914, loc,
9747                                                 "Static field or property `{0}' cannot be assigned in an object initializer",
9748                                                 me.GetSignatureForError ());
9749                                 }
9750
9751                                 target = me;
9752                                 me.InstanceExpression = ec.CurrentInitializerVariable;
9753                         }
9754
9755                         if (source is CollectionOrObjectInitializers) {
9756                                 Expression previous = ec.CurrentInitializerVariable;
9757                                 ec.CurrentInitializerVariable = target;
9758                                 source = source.Resolve (ec);
9759                                 ec.CurrentInitializerVariable = previous;
9760                                 if (source == null)
9761                                         return null;
9762                                         
9763                                 eclass = source.eclass;
9764                                 type = source.Type;
9765                                 return this;
9766                         }
9767
9768                         return base.DoResolve (ec);
9769                 }
9770         
9771                 public override void EmitStatement (EmitContext ec)
9772                 {
9773                         if (source is CollectionOrObjectInitializers)
9774                                 source.Emit (ec);
9775                         else
9776                                 base.EmitStatement (ec);
9777                 }
9778         }
9779         
9780         //
9781         // A collection initializer expression
9782         //
9783         class CollectionElementInitializer : Invocation
9784         {
9785                 public class ElementInitializerArgument : Argument
9786                 {
9787                         public ElementInitializerArgument (Expression e)
9788                                 : base (e)
9789                         {
9790                         }
9791                 }
9792
9793                 sealed class AddMemberAccess : MemberAccess
9794                 {
9795                         public AddMemberAccess (Expression expr, Location loc)
9796                                 : base (expr, "Add", loc)
9797                         {
9798                         }
9799
9800                         protected override void Error_TypeDoesNotContainDefinition (ResolveContext ec, TypeSpec type, string name)
9801                         {
9802                                 if (TypeManager.HasElementType (type))
9803                                         return;
9804
9805                                 base.Error_TypeDoesNotContainDefinition (ec, type, name);
9806                         }
9807                 }
9808
9809                 public CollectionElementInitializer (Expression argument)
9810                         : base (null, new Arguments (1))
9811                 {
9812                         base.arguments.Add (new ElementInitializerArgument (argument));
9813                         this.loc = argument.Location;
9814                 }
9815
9816                 public CollectionElementInitializer (List<Expression> arguments, Location loc)
9817                         : base (null, new Arguments (arguments.Count))
9818                 {
9819                         foreach (Expression e in arguments)
9820                                 base.arguments.Add (new ElementInitializerArgument (e));
9821
9822                         this.loc = loc;
9823                 }
9824
9825                 public override Expression CreateExpressionTree (ResolveContext ec)
9826                 {
9827                         Arguments args = new Arguments (2);
9828                         args.Add (new Argument (mg.CreateExpressionTree (ec)));
9829
9830                         var expr_initializers = new ArrayInitializer (arguments.Count, loc);
9831                         foreach (Argument a in arguments)
9832                                 expr_initializers.Add (a.CreateExpressionTree (ec));
9833
9834                         args.Add (new Argument (new ArrayCreation (
9835                                 CreateExpressionTypeExpression (ec, loc), expr_initializers, loc)));
9836                         return CreateExpressionFactoryCall (ec, "ElementInit", args);
9837                 }
9838
9839                 protected override void CloneTo (CloneContext clonectx, Expression t)
9840                 {
9841                         CollectionElementInitializer target = (CollectionElementInitializer) t;
9842                         if (arguments != null)
9843                                 target.arguments = arguments.Clone (clonectx);
9844                 }
9845
9846                 protected override Expression DoResolve (ResolveContext ec)
9847                 {
9848                         base.expr = new AddMemberAccess (ec.CurrentInitializerVariable, loc);
9849
9850                         return base.DoResolve (ec);
9851                 }
9852         }
9853         
9854         //
9855         // A block of object or collection initializers
9856         //
9857         public class CollectionOrObjectInitializers : ExpressionStatement
9858         {
9859                 IList<Expression> initializers;
9860                 bool is_collection_initialization;
9861                 
9862                 public static readonly CollectionOrObjectInitializers Empty = 
9863                         new CollectionOrObjectInitializers (Array.AsReadOnly (new Expression [0]), Location.Null);
9864
9865                 public CollectionOrObjectInitializers (IList<Expression> initializers, Location loc)
9866                 {
9867                         this.initializers = initializers;
9868                         this.loc = loc;
9869                 }
9870
9871                 public IList<Expression> Initializers {
9872                         get {
9873                                 return initializers;
9874                         }
9875                 }
9876                 
9877                 public bool IsEmpty {
9878                         get {
9879                                 return initializers.Count == 0;
9880                         }
9881                 }
9882
9883                 public bool IsCollectionInitializer {
9884                         get {
9885                                 return is_collection_initialization;
9886                         }
9887                 }
9888
9889                 protected override void CloneTo (CloneContext clonectx, Expression target)
9890                 {
9891                         CollectionOrObjectInitializers t = (CollectionOrObjectInitializers) target;
9892
9893                         t.initializers = new List<Expression> (initializers.Count);
9894                         foreach (var e in initializers)
9895                                 t.initializers.Add (e.Clone (clonectx));
9896                 }
9897
9898                 public override bool ContainsEmitWithAwait ()
9899                 {
9900                         foreach (var e in initializers) {
9901                                 if (e.ContainsEmitWithAwait ())
9902                                         return true;
9903                         }
9904
9905                         return false;
9906                 }
9907
9908                 public override Expression CreateExpressionTree (ResolveContext ec)
9909                 {
9910                         return CreateExpressionTree (ec, false);
9911                 }
9912
9913                 public Expression CreateExpressionTree (ResolveContext ec, bool inferType)
9914                 {
9915                         var expr_initializers = new ArrayInitializer (initializers.Count, loc);
9916                         foreach (Expression e in initializers) {
9917                                 Expression expr = e.CreateExpressionTree (ec);
9918                                 if (expr != null)
9919                                         expr_initializers.Add (expr);
9920                         }
9921
9922                         if (inferType)
9923                                 return new ImplicitlyTypedArrayCreation (expr_initializers, loc);
9924
9925                         return new ArrayCreation (new TypeExpression (ec.Module.PredefinedTypes.MemberBinding.Resolve (), loc), expr_initializers, loc); 
9926                 }
9927                 
9928                 protected override Expression DoResolve (ResolveContext ec)
9929                 {
9930                         List<string> element_names = null;
9931                         for (int i = 0; i < initializers.Count; ++i) {
9932                                 Expression initializer = initializers [i];
9933                                 ElementInitializer element_initializer = initializer as ElementInitializer;
9934
9935                                 if (i == 0) {
9936                                         if (element_initializer != null) {
9937                                                 element_names = new List<string> (initializers.Count);
9938                                                 element_names.Add (element_initializer.Name);
9939                                         } else if (initializer is CompletingExpression){
9940                                                 initializer.Resolve (ec);
9941                                                 throw new InternalErrorException ("This line should never be reached");
9942                                         } else {
9943                                                 var t = ec.CurrentInitializerVariable.Type;
9944                                                 // LAMESPEC: The collection must implement IEnumerable only, no dynamic support
9945                                                 if (!t.ImplementsInterface (ec.BuiltinTypes.IEnumerable, false) && t.BuiltinType != BuiltinTypeSpec.Type.Dynamic) {
9946                                                         ec.Report.Error (1922, loc, "A field or property `{0}' cannot be initialized with a collection " +
9947                                                                 "object initializer because type `{1}' does not implement `{2}' interface",
9948                                                                 ec.CurrentInitializerVariable.GetSignatureForError (),
9949                                                                 TypeManager.CSharpName (ec.CurrentInitializerVariable.Type),
9950                                                                 TypeManager.CSharpName (ec.BuiltinTypes.IEnumerable));
9951                                                         return null;
9952                                                 }
9953                                                 is_collection_initialization = true;
9954                                         }
9955                                 } else {
9956                                         if (is_collection_initialization != (element_initializer == null)) {
9957                                                 ec.Report.Error (747, initializer.Location, "Inconsistent `{0}' member declaration",
9958                                                         is_collection_initialization ? "collection initializer" : "object initializer");
9959                                                 continue;
9960                                         }
9961
9962                                         if (!is_collection_initialization) {
9963                                                 if (element_names.Contains (element_initializer.Name)) {
9964                                                         ec.Report.Error (1912, element_initializer.Location,
9965                                                                 "An object initializer includes more than one member `{0}' initialization",
9966                                                                 element_initializer.Name);
9967                                                 } else {
9968                                                         element_names.Add (element_initializer.Name);
9969                                                 }
9970                                         }
9971                                 }
9972
9973                                 Expression e = initializer.Resolve (ec);
9974                                 if (e == EmptyExpressionStatement.Instance)
9975                                         initializers.RemoveAt (i--);
9976                                 else
9977                                         initializers [i] = e;
9978                         }
9979
9980                         type = ec.CurrentInitializerVariable.Type;
9981                         if (is_collection_initialization) {
9982                                 if (TypeManager.HasElementType (type)) {
9983                                         ec.Report.Error (1925, loc, "Cannot initialize object of type `{0}' with a collection initializer",
9984                                                 TypeManager.CSharpName (type));
9985                                 }
9986                         }
9987
9988                         eclass = ExprClass.Variable;
9989                         return this;
9990                 }
9991
9992                 public override void Emit (EmitContext ec)
9993                 {
9994                         EmitStatement (ec);
9995                 }
9996
9997                 public override void EmitStatement (EmitContext ec)
9998                 {
9999                         foreach (ExpressionStatement e in initializers) {
10000                                 // TODO: need location region
10001                                 ec.Mark (e.Location);
10002                                 e.EmitStatement (ec);
10003                         }
10004                 }
10005         }
10006         
10007         //
10008         // New expression with element/object initializers
10009         //
10010         public class NewInitialize : New
10011         {
10012                 //
10013                 // This class serves as a proxy for variable initializer target instances.
10014                 // A real variable is assigned later when we resolve left side of an
10015                 // assignment
10016                 //
10017                 sealed class InitializerTargetExpression : Expression, IMemoryLocation
10018                 {
10019                         NewInitialize new_instance;
10020
10021                         public InitializerTargetExpression (NewInitialize newInstance)
10022                         {
10023                                 this.type = newInstance.type;
10024                                 this.loc = newInstance.loc;
10025                                 this.eclass = newInstance.eclass;
10026                                 this.new_instance = newInstance;
10027                         }
10028
10029                         public override bool ContainsEmitWithAwait ()
10030                         {
10031                                 return false;
10032                         }
10033
10034                         public override Expression CreateExpressionTree (ResolveContext ec)
10035                         {
10036                                 // Should not be reached
10037                                 throw new NotSupportedException ("ET");
10038                         }
10039
10040                         protected override Expression DoResolve (ResolveContext ec)
10041                         {
10042                                 return this;
10043                         }
10044
10045                         public override Expression DoResolveLValue (ResolveContext ec, Expression right_side)
10046                         {
10047                                 return this;
10048                         }
10049
10050                         public override void Emit (EmitContext ec)
10051                         {
10052                                 Expression e = (Expression) new_instance.instance;
10053                                 e.Emit (ec);
10054                         }
10055
10056                         public override Expression EmitToField (EmitContext ec)
10057                         {
10058                                 return (Expression) new_instance.instance;
10059                         }
10060
10061                         #region IMemoryLocation Members
10062
10063                         public void AddressOf (EmitContext ec, AddressOp mode)
10064                         {
10065                                 new_instance.instance.AddressOf (ec, mode);
10066                         }
10067
10068                         #endregion
10069                 }
10070
10071                 CollectionOrObjectInitializers initializers;
10072                 IMemoryLocation instance;
10073
10074                 public NewInitialize (FullNamedExpression requested_type, Arguments arguments, CollectionOrObjectInitializers initializers, Location l)
10075                         : base (requested_type, arguments, l)
10076                 {
10077                         this.initializers = initializers;
10078                 }
10079
10080                 public CollectionOrObjectInitializers Initializers {
10081                         get {
10082                                 return initializers;
10083                         }
10084                 }
10085
10086                 protected override void CloneTo (CloneContext clonectx, Expression t)
10087                 {
10088                         base.CloneTo (clonectx, t);
10089
10090                         NewInitialize target = (NewInitialize) t;
10091                         target.initializers = (CollectionOrObjectInitializers) initializers.Clone (clonectx);
10092                 }
10093
10094                 public override bool ContainsEmitWithAwait ()
10095                 {
10096                         return base.ContainsEmitWithAwait () || initializers.ContainsEmitWithAwait ();
10097                 }
10098
10099                 public override Expression CreateExpressionTree (ResolveContext ec)
10100                 {
10101                         Arguments args = new Arguments (2);
10102                         args.Add (new Argument (base.CreateExpressionTree (ec)));
10103                         if (!initializers.IsEmpty)
10104                                 args.Add (new Argument (initializers.CreateExpressionTree (ec, initializers.IsCollectionInitializer)));
10105
10106                         return CreateExpressionFactoryCall (ec,
10107                                 initializers.IsCollectionInitializer ? "ListInit" : "MemberInit",
10108                                 args);
10109                 }
10110
10111                 protected override Expression DoResolve (ResolveContext ec)
10112                 {
10113                         Expression e = base.DoResolve (ec);
10114                         if (type == null)
10115                                 return null;
10116
10117                         Expression previous = ec.CurrentInitializerVariable;
10118                         ec.CurrentInitializerVariable = new InitializerTargetExpression (this);
10119                         initializers.Resolve (ec);
10120                         ec.CurrentInitializerVariable = previous;
10121                         return e;
10122                 }
10123
10124                 public override bool Emit (EmitContext ec, IMemoryLocation target)
10125                 {
10126                         bool left_on_stack = base.Emit (ec, target);
10127
10128                         if (initializers.IsEmpty)
10129                                 return left_on_stack;
10130
10131                         LocalTemporary temp = null;
10132
10133                         instance = target as LocalTemporary;
10134
10135                         if (instance == null) {
10136                                 if (!left_on_stack) {
10137                                         VariableReference vr = target as VariableReference;
10138
10139                                         // FIXME: This still does not work correctly for pre-set variables
10140                                         if (vr != null && vr.IsRef)
10141                                                 target.AddressOf (ec, AddressOp.Load);
10142
10143                                         ((Expression) target).Emit (ec);
10144                                         left_on_stack = true;
10145                                 }
10146
10147                                 if (ec.HasSet (BuilderContext.Options.AsyncBody) && initializers.ContainsEmitWithAwait ()) {
10148                                         instance = new EmptyAwaitExpression (Type).EmitToField (ec) as IMemoryLocation;
10149                                 } else {
10150                                         temp = new LocalTemporary (type);
10151                                         instance = temp;
10152                                 }
10153                         }
10154
10155                         if (left_on_stack && temp != null)
10156                                 temp.Store (ec);
10157
10158                         initializers.Emit (ec);
10159
10160                         if (left_on_stack) {
10161                                 if (temp != null) {
10162                                         temp.Emit (ec);
10163                                         temp.Release (ec);
10164                                 } else {
10165                                         ((Expression) instance).Emit (ec);
10166                                 }
10167                         }
10168
10169                         return left_on_stack;
10170                 }
10171
10172                 protected override IMemoryLocation EmitAddressOf (EmitContext ec, AddressOp Mode)
10173                 {
10174                         instance = base.EmitAddressOf (ec, Mode);
10175
10176                         if (!initializers.IsEmpty)
10177                                 initializers.Emit (ec);
10178
10179                         return instance;
10180                 }
10181
10182                 public override object Accept (StructuralVisitor visitor)
10183                 {
10184                         return visitor.Visit (this);
10185                 }
10186         }
10187
10188         public class NewAnonymousType : New
10189         {
10190                 static readonly AnonymousTypeParameter[] EmptyParameters = new AnonymousTypeParameter[0];
10191
10192                 List<AnonymousTypeParameter> parameters;
10193                 readonly TypeContainer parent;
10194                 AnonymousTypeClass anonymous_type;
10195
10196                 public NewAnonymousType (List<AnonymousTypeParameter> parameters, TypeContainer parent, Location loc)
10197                          : base (null, null, loc)
10198                 {
10199                         this.parameters = parameters;
10200                         this.parent = parent;
10201                 }
10202
10203                 public List<AnonymousTypeParameter> Parameters {
10204                         get {
10205                                 return this.parameters;
10206                         }
10207                 }
10208
10209                 protected override void CloneTo (CloneContext clonectx, Expression target)
10210                 {
10211                         if (parameters == null)
10212                                 return;
10213
10214                         NewAnonymousType t = (NewAnonymousType) target;
10215                         t.parameters = new List<AnonymousTypeParameter> (parameters.Count);
10216                         foreach (AnonymousTypeParameter atp in parameters)
10217                                 t.parameters.Add ((AnonymousTypeParameter) atp.Clone (clonectx));
10218                 }
10219
10220                 AnonymousTypeClass CreateAnonymousType (ResolveContext ec, IList<AnonymousTypeParameter> parameters)
10221                 {
10222                         AnonymousTypeClass type = parent.Module.GetAnonymousType (parameters);
10223                         if (type != null)
10224                                 return type;
10225
10226                         type = AnonymousTypeClass.Create (parent, parameters, loc);
10227                         if (type == null)
10228                                 return null;
10229
10230                         int errors = ec.Report.Errors;
10231                         type.CreateContainer ();
10232                         type.DefineContainer ();
10233                         type.Define ();
10234                         if ((ec.Report.Errors - errors) == 0) {
10235                                 parent.Module.AddAnonymousType (type);
10236                         }
10237
10238                         return type;
10239                 }
10240
10241                 public override Expression CreateExpressionTree (ResolveContext ec)
10242                 {
10243                         if (parameters == null)
10244                                 return base.CreateExpressionTree (ec);
10245
10246                         var init = new ArrayInitializer (parameters.Count, loc);
10247                         foreach (var m in anonymous_type.Members) {
10248                                 var p = m as Property;
10249                                 if (p != null)
10250                                         init.Add (new TypeOfMethod (MemberCache.GetMember (type, p.Get.Spec), loc));
10251                         }
10252
10253                         var ctor_args = new ArrayInitializer (arguments.Count, loc);
10254                         foreach (Argument a in arguments)
10255                                 ctor_args.Add (a.CreateExpressionTree (ec));
10256
10257                         Arguments args = new Arguments (3);
10258                         args.Add (new Argument (new TypeOfMethod (method, loc)));
10259                         args.Add (new Argument (new ArrayCreation (CreateExpressionTypeExpression (ec, loc), ctor_args, loc)));
10260                         args.Add (new Argument (new ImplicitlyTypedArrayCreation (init, loc)));
10261
10262                         return CreateExpressionFactoryCall (ec, "New", args);
10263                 }
10264
10265                 protected override Expression DoResolve (ResolveContext ec)
10266                 {
10267                         if (ec.HasSet (ResolveContext.Options.ConstantScope)) {
10268                                 ec.Report.Error (836, loc, "Anonymous types cannot be used in this expression");
10269                                 return null;
10270                         }
10271
10272                         if (parameters == null) {
10273                                 anonymous_type = CreateAnonymousType (ec, EmptyParameters);
10274                                 RequestedType = new TypeExpression (anonymous_type.Definition, loc);
10275                                 return base.DoResolve (ec);
10276                         }
10277
10278                         bool error = false;
10279                         arguments = new Arguments (parameters.Count);
10280                         var t_args = new TypeSpec [parameters.Count];
10281                         for (int i = 0; i < parameters.Count; ++i) {
10282                                 Expression e = parameters [i].Resolve (ec);
10283                                 if (e == null) {
10284                                         error = true;
10285                                         continue;
10286                                 }
10287
10288                                 arguments.Add (new Argument (e));
10289                                 t_args [i] = e.Type;
10290                         }
10291
10292                         if (error)
10293                                 return null;
10294
10295                         anonymous_type = CreateAnonymousType (ec, parameters);
10296                         if (anonymous_type == null)
10297                                 return null;
10298
10299                         type = anonymous_type.Definition.MakeGenericType (ec.Module, t_args);
10300                         method = (MethodSpec) MemberCache.FindMember (type, MemberFilter.Constructor (null), BindingRestriction.DeclaredOnly);
10301                         eclass = ExprClass.Value;
10302                         return this;
10303                 }
10304
10305                 public override void EmitStatement (EmitContext ec)
10306                 {
10307                         base.EmitStatement (ec);
10308                 }
10309                 
10310                 public override object Accept (StructuralVisitor visitor)
10311                 {
10312                         return visitor.Visit (this);
10313                 }
10314         }
10315
10316         public class AnonymousTypeParameter : ShimExpression
10317         {
10318                 public readonly string Name;
10319
10320                 public AnonymousTypeParameter (Expression initializer, string name, Location loc)
10321                         : base (initializer)
10322                 {
10323                         this.Name = name;
10324                         this.loc = loc;
10325                 }
10326                 
10327                 public AnonymousTypeParameter (Parameter parameter)
10328                         : base (new SimpleName (parameter.Name, parameter.Location))
10329                 {
10330                         this.Name = parameter.Name;
10331                         this.loc = parameter.Location;
10332                 }               
10333
10334                 public override bool Equals (object o)
10335                 {
10336                         AnonymousTypeParameter other = o as AnonymousTypeParameter;
10337                         return other != null && Name == other.Name;
10338                 }
10339
10340                 public override int GetHashCode ()
10341                 {
10342                         return Name.GetHashCode ();
10343                 }
10344
10345                 protected override Expression DoResolve (ResolveContext ec)
10346                 {
10347                         Expression e = expr.Resolve (ec);
10348                         if (e == null)
10349                                 return null;
10350
10351                         if (e.eclass == ExprClass.MethodGroup) {
10352                                 Error_InvalidInitializer (ec, e.ExprClassName);
10353                                 return null;
10354                         }
10355
10356                         type = e.Type;
10357                         if (type.Kind == MemberKind.Void || type == InternalType.NullLiteral || type == InternalType.AnonymousMethod || type.IsPointer) {
10358                                 Error_InvalidInitializer (ec, type.GetSignatureForError ());
10359                                 return null;
10360                         }
10361
10362                         return e;
10363                 }
10364
10365                 protected virtual void Error_InvalidInitializer (ResolveContext ec, string initializer)
10366                 {
10367                         ec.Report.Error (828, loc, "An anonymous type property `{0}' cannot be initialized with `{1}'",
10368                                 Name, initializer);
10369                 }
10370         }
10371 }