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