[mcs] Add reference to parent storey when current value type async storey needs fabri...
[mono.git] / mcs / mcs / statement.cs
1 //
2 // statement.cs: Statement representation for the IL tree.
3 //
4 // Authors:
5 //   Miguel de Icaza (miguel@ximian.com)
6 //   Martin Baulig (martin@ximian.com)
7 //   Marek Safar (marek.safar@gmail.com)
8 //
9 // Copyright 2001, 2002, 2003 Ximian, Inc.
10 // Copyright 2003, 2004 Novell, Inc.
11 // Copyright 2011 Xamarin Inc.
12 //
13
14 using System;
15 using System.Collections.Generic;
16
17 #if STATIC
18 using IKVM.Reflection.Emit;
19 #else
20 using System.Reflection.Emit;
21 #endif
22
23 namespace Mono.CSharp {
24         
25         public abstract class Statement {
26                 public Location loc;
27                 protected bool reachable;
28
29                 public bool IsUnreachable {
30                         get {
31                                 return !reachable;
32                         }
33                 }
34                 
35                 /// <summary>
36                 ///   Resolves the statement, true means that all sub-statements
37                 ///   did resolve ok.
38                 ///  </summary>
39                 public virtual bool Resolve (BlockContext bc)
40                 {
41                         return true;
42                 }
43
44                 /// <summary>
45                 ///   Return value indicates whether all code paths emitted return.
46                 /// </summary>
47                 protected abstract void DoEmit (EmitContext ec);
48
49                 public virtual void Emit (EmitContext ec)
50                 {
51                         ec.Mark (loc);
52                         DoEmit (ec);
53
54                         if (ec.StatementEpilogue != null) {
55                                 ec.EmitEpilogue ();
56                         }
57                 }
58
59                 //
60                 // This routine must be overrided in derived classes and make copies
61                 // of all the data that might be modified if resolved
62                 // 
63                 protected abstract void CloneTo (CloneContext clonectx, Statement target);
64
65                 public Statement Clone (CloneContext clonectx)
66                 {
67                         Statement s = (Statement) this.MemberwiseClone ();
68                         CloneTo (clonectx, s);
69                         return s;
70                 }
71
72                 public virtual Expression CreateExpressionTree (ResolveContext ec)
73                 {
74                         ec.Report.Error (834, loc, "A lambda expression with statement body cannot be converted to an expresion tree");
75                         return null;
76                 }
77                 
78                 public virtual object Accept (StructuralVisitor visitor)
79                 {
80                         return visitor.Visit (this);
81                 }
82
83                 //
84                 // Return value indicates whether statement has unreachable end
85                 //
86                 protected abstract bool DoFlowAnalysis (FlowAnalysisContext fc);
87
88                 public bool FlowAnalysis (FlowAnalysisContext fc)
89                 {
90                         if (reachable) {
91                                 fc.UnreachableReported = false;
92                                 var res = DoFlowAnalysis (fc);
93                                 return res;
94                         }
95
96                         //
97                         // Special handling cases
98                         //
99                         if (this is Block) {
100                                 return DoFlowAnalysis (fc);
101                         }
102
103                         if (this is EmptyStatement || loc.IsNull)
104                                 return true;
105
106                         if (fc.UnreachableReported)
107                                 return true;
108
109                         fc.Report.Warning (162, 2, loc, "Unreachable code detected");
110                         fc.UnreachableReported = true;
111                         return true;
112                 }
113
114                 public virtual Reachability MarkReachable (Reachability rc)
115                 {
116                         if (!rc.IsUnreachable)
117                                 reachable = true;
118
119                         return rc;
120                 }
121
122                 protected void CheckExitBoundaries (BlockContext bc, Block scope)
123                 {
124                         if (bc.CurrentBlock.ParametersBlock.Original != scope.ParametersBlock.Original) {
125                                 bc.Report.Error (1632, loc, "Control cannot leave the body of an anonymous method");
126                                 return;
127                         }
128
129                         for (var b = bc.CurrentBlock; b != null && b != scope; b = b.Parent) {
130                                 if (b.IsFinallyBlock) {
131                                         Error_FinallyClauseExit (bc);
132                                         break;
133                                 }
134                         }
135                 }
136
137                 protected void Error_FinallyClauseExit (BlockContext bc)
138                 {
139                         bc.Report.Error (157, loc, "Control cannot leave the body of a finally clause");
140                 }
141         }
142
143         public sealed class EmptyStatement : Statement
144         {
145                 public EmptyStatement (Location loc)
146                 {
147                         this.loc = loc;
148                 }
149
150                 public override bool Resolve (BlockContext ec)
151                 {
152                         return true;
153                 }
154
155                 public override void Emit (EmitContext ec)
156                 {
157                 }
158
159                 protected override void DoEmit (EmitContext ec)
160                 {
161                         throw new NotSupportedException ();
162                 }
163
164                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
165                 {
166                         return false;
167                 }
168
169                 protected override void CloneTo (CloneContext clonectx, Statement target)
170                 {
171                         // nothing needed.
172                 }
173                 
174                 public override object Accept (StructuralVisitor visitor)
175                 {
176                         return visitor.Visit (this);
177                 }
178         }
179
180         public class If : Statement {
181                 Expression expr;
182                 public Statement TrueStatement;
183                 public Statement FalseStatement;
184
185                 bool true_returns, false_returns;
186
187                 public If (Expression bool_expr, Statement true_statement, Location l)
188                         : this (bool_expr, true_statement, null, l)
189                 {
190                 }
191
192                 public If (Expression bool_expr,
193                            Statement true_statement,
194                            Statement false_statement,
195                            Location l)
196                 {
197                         this.expr = bool_expr;
198                         TrueStatement = true_statement;
199                         FalseStatement = false_statement;
200                         loc = l;
201                 }
202
203                 public Expression Expr {
204                         get {
205                                 return this.expr;
206                         }
207                 }
208                 
209                 public override bool Resolve (BlockContext ec)
210                 {
211                         expr = expr.Resolve (ec);
212
213                         var ok = TrueStatement.Resolve (ec);
214
215                         if (FalseStatement != null) {
216                                 ok &= FalseStatement.Resolve (ec);
217                         }
218
219                         return ok;
220                 }
221                 
222                 protected override void DoEmit (EmitContext ec)
223                 {
224                         Label false_target = ec.DefineLabel ();
225                         Label end;
226
227                         //
228                         // If we're a boolean constant, Resolve() already
229                         // eliminated dead code for us.
230                         //
231                         Constant c = expr as Constant;
232                         if (c != null){
233                                 c.EmitSideEffect (ec);
234
235                                 if (!c.IsDefaultValue)
236                                         TrueStatement.Emit (ec);
237                                 else if (FalseStatement != null)
238                                         FalseStatement.Emit (ec);
239
240                                 return;
241                         }                       
242                         
243                         expr.EmitBranchable (ec, false_target, false);
244                         
245                         TrueStatement.Emit (ec);
246
247                         if (FalseStatement != null){
248                                 bool branch_emitted = false;
249                                 
250                                 end = ec.DefineLabel ();
251                                 if (!true_returns){
252                                         ec.Emit (OpCodes.Br, end);
253                                         branch_emitted = true;
254                                 }
255
256                                 ec.MarkLabel (false_target);
257                                 FalseStatement.Emit (ec);
258
259                                 if (branch_emitted)
260                                         ec.MarkLabel (end);
261                         } else {
262                                 ec.MarkLabel (false_target);
263                         }
264                 }
265
266                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
267                 {
268                         expr.FlowAnalysisConditional (fc);
269
270                         var da_false = new DefiniteAssignmentBitSet (fc.DefiniteAssignmentOnFalse);
271
272                         fc.DefiniteAssignment = fc.DefiniteAssignmentOnTrue;
273
274                         var res = TrueStatement.FlowAnalysis (fc);
275
276                         if (FalseStatement == null) {
277                                 var c = expr as Constant;
278                                 if (c != null && !c.IsDefaultValue)
279                                         return true_returns;
280
281                                 if (true_returns)
282                                         fc.DefiniteAssignment = da_false;
283                                 else
284                                         fc.DefiniteAssignment &= da_false;
285  
286                                 return false;
287                         }
288
289                         if (true_returns) {
290                                 fc.DefiniteAssignment = da_false;
291                                 return FalseStatement.FlowAnalysis (fc);
292                         }
293
294                         var da_true = fc.DefiniteAssignment;
295
296                         fc.DefiniteAssignment = da_false;
297                         res &= FalseStatement.FlowAnalysis (fc);
298
299                         if (!TrueStatement.IsUnreachable) {
300                                 if (false_returns || FalseStatement.IsUnreachable)
301                                         fc.DefiniteAssignment = da_true;
302                                 else
303                                         fc.DefiniteAssignment &= da_true;
304                         }
305
306                         return res;
307                 }
308
309                 public override Reachability MarkReachable (Reachability rc)
310                 {
311                         if (rc.IsUnreachable)
312                                 return rc;
313
314                         base.MarkReachable (rc);
315
316                         var c = expr as Constant;
317                         if (c != null) {
318                                 bool take = !c.IsDefaultValue;
319                                 if (take) {
320                                         rc = TrueStatement.MarkReachable (rc);
321                                 } else {
322                                         if (FalseStatement != null)
323                                                 rc = FalseStatement.MarkReachable (rc);
324                                 }
325
326                                 return rc;
327                         }
328
329                         var true_rc = TrueStatement.MarkReachable (rc);
330                         true_returns = true_rc.IsUnreachable;
331         
332                         if (FalseStatement == null)
333                                 return rc;
334
335                         var false_rc = FalseStatement.MarkReachable (rc);
336                         false_returns = false_rc.IsUnreachable;
337
338                         return true_rc & false_rc;
339                 }
340
341                 protected override void CloneTo (CloneContext clonectx, Statement t)
342                 {
343                         If target = (If) t;
344
345                         target.expr = expr.Clone (clonectx);
346                         target.TrueStatement = TrueStatement.Clone (clonectx);
347                         if (FalseStatement != null)
348                                 target.FalseStatement = FalseStatement.Clone (clonectx);
349                 }
350                 
351                 public override object Accept (StructuralVisitor visitor)
352                 {
353                         return visitor.Visit (this);
354                 }
355         }
356
357         public class Do : LoopStatement
358         {
359                 public Expression expr;
360                 bool iterator_reachable, end_reachable;
361
362                 public Do (Statement statement, BooleanExpression bool_expr, Location doLocation, Location whileLocation)
363                         : base (statement)
364                 {
365                         expr = bool_expr;
366                         loc = doLocation;
367                         WhileLocation = whileLocation;
368                 }
369
370                 public Location WhileLocation {
371                         get; private set;
372                 }
373
374                 public override bool Resolve (BlockContext bc)
375                 {
376                         var ok = base.Resolve (bc);
377
378                         expr = expr.Resolve (bc);
379
380                         return ok;
381                 }
382                 
383                 protected override void DoEmit (EmitContext ec)
384                 {
385                         Label loop = ec.DefineLabel ();
386                         Label old_begin = ec.LoopBegin;
387                         Label old_end = ec.LoopEnd;
388                         
389                         ec.LoopBegin = ec.DefineLabel ();
390                         ec.LoopEnd = ec.DefineLabel ();
391                                 
392                         ec.MarkLabel (loop);
393                         Statement.Emit (ec);
394                         ec.MarkLabel (ec.LoopBegin);
395
396                         // Mark start of while condition
397                         ec.Mark (WhileLocation);
398
399                         //
400                         // Dead code elimination
401                         //
402                         if (expr is Constant) {
403                                 bool res = !((Constant) expr).IsDefaultValue;
404
405                                 expr.EmitSideEffect (ec);
406                                 if (res)
407                                         ec.Emit (OpCodes.Br, loop);
408                         } else {
409                                 expr.EmitBranchable (ec, loop, true);
410                         }
411                         
412                         ec.MarkLabel (ec.LoopEnd);
413
414                         ec.LoopBegin = old_begin;
415                         ec.LoopEnd = old_end;
416                 }
417
418                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
419                 {
420                         var res = Statement.FlowAnalysis (fc);
421
422                         expr.FlowAnalysisConditional (fc);
423
424                         fc.DefiniteAssignment = fc.DefiniteAssignmentOnFalse;
425
426                         if (res && !iterator_reachable)
427                                 return !end_reachable;
428
429                         if (!end_reachable) {
430                                 var c = expr as Constant;
431                                 if (c != null && !c.IsDefaultValue)
432                                         return true;
433                         }
434
435                         return false;
436                 }
437                 
438                 public override Reachability MarkReachable (Reachability rc)
439                 {
440                         base.MarkReachable (rc);
441                         
442                         var body_rc = Statement.MarkReachable (rc);
443
444                         if (body_rc.IsUnreachable && !iterator_reachable) {
445                                 expr = new UnreachableExpression (expr);
446                                 return end_reachable ? rc : Reachability.CreateUnreachable ();
447                         }
448
449                         if (!end_reachable) {
450                                 var c = expr as Constant;
451                                 if (c != null && !c.IsDefaultValue)
452                                         return Reachability.CreateUnreachable ();
453                         }
454
455                         return rc;
456                 }
457
458                 protected override void CloneTo (CloneContext clonectx, Statement t)
459                 {
460                         Do target = (Do) t;
461
462                         target.Statement = Statement.Clone (clonectx);
463                         target.expr = expr.Clone (clonectx);
464                 }
465                 
466                 public override object Accept (StructuralVisitor visitor)
467                 {
468                         return visitor.Visit (this);
469                 }
470
471                 public override void SetEndReachable ()
472                 {
473                         end_reachable = true;
474                 }
475
476                 public override void SetIteratorReachable ()
477                 {
478                         iterator_reachable = true;
479                 }
480         }
481
482         public class While : LoopStatement
483         {
484                 public Expression expr;
485                 bool empty, infinite, end_reachable;
486                 List<DefiniteAssignmentBitSet> end_reachable_das;
487
488                 public While (BooleanExpression bool_expr, Statement statement, Location l)
489                         : base (statement)
490                 {
491                         this.expr = bool_expr;
492                         loc = l;
493                 }
494
495                 public override bool Resolve (BlockContext bc)
496                 {
497                         bool ok = true;
498
499                         expr = expr.Resolve (bc);
500                         if (expr == null)
501                                 ok = false;
502
503                         var c = expr as Constant;
504                         if (c != null) {
505                                 empty = c.IsDefaultValue;
506                                 infinite = !empty;
507                         }
508
509                         ok &= base.Resolve (bc);
510                         return ok;
511                 }
512                 
513                 protected override void DoEmit (EmitContext ec)
514                 {
515                         if (empty) {
516                                 expr.EmitSideEffect (ec);
517                                 return;
518                         }
519
520                         Label old_begin = ec.LoopBegin;
521                         Label old_end = ec.LoopEnd;
522                         
523                         ec.LoopBegin = ec.DefineLabel ();
524                         ec.LoopEnd = ec.DefineLabel ();
525
526                         //
527                         // Inform whether we are infinite or not
528                         //
529                         if (expr is Constant) {
530                                 // expr is 'true', since the 'empty' case above handles the 'false' case
531                                 ec.MarkLabel (ec.LoopBegin);
532
533                                 if (ec.EmitAccurateDebugInfo)
534                                         ec.Emit (OpCodes.Nop);
535
536                                 expr.EmitSideEffect (ec);
537                                 Statement.Emit (ec);
538                                 ec.Emit (OpCodes.Br, ec.LoopBegin);
539                                         
540                                 //
541                                 // Inform that we are infinite (ie, `we return'), only
542                                 // if we do not `break' inside the code.
543                                 //
544                                 ec.MarkLabel (ec.LoopEnd);
545                         } else {
546                                 Label while_loop = ec.DefineLabel ();
547
548                                 ec.Emit (OpCodes.Br, ec.LoopBegin);
549                                 ec.MarkLabel (while_loop);
550
551                                 Statement.Emit (ec);
552                         
553                                 ec.MarkLabel (ec.LoopBegin);
554
555                                 ec.Mark (loc);
556                                 expr.EmitBranchable (ec, while_loop, true);
557                                 
558                                 ec.MarkLabel (ec.LoopEnd);
559                         }       
560
561                         ec.LoopBegin = old_begin;
562                         ec.LoopEnd = old_end;
563                 }
564
565                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
566                 {
567                         expr.FlowAnalysisConditional (fc);
568
569                         fc.DefiniteAssignment = fc.DefiniteAssignmentOnTrue;
570                         var da_false = new DefiniteAssignmentBitSet (fc.DefiniteAssignmentOnFalse);
571
572                         Statement.FlowAnalysis (fc);
573
574                         //
575                         // Special case infinite while with breaks
576                         //
577                         if (end_reachable_das != null) {
578                                 da_false = DefiniteAssignmentBitSet.And (end_reachable_das);
579                                 end_reachable_das = null;
580                         }
581
582                         fc.DefiniteAssignment = da_false;
583
584                         if (infinite && !end_reachable)
585                                 return true;
586
587                         return false;
588                 }
589
590                 public override Reachability MarkReachable (Reachability rc)
591                 {
592                         if (rc.IsUnreachable)
593                                 return rc;
594
595                         base.MarkReachable (rc);
596
597                         //
598                         // Special case unreachable while body
599                         //
600                         if (empty) {
601                                 Statement.MarkReachable (Reachability.CreateUnreachable ());
602                                 return rc;
603                         }
604
605                         Statement.MarkReachable (rc);
606
607                         //
608                         // When infinite while end is unreachable via break anything what follows is unreachable too
609                         //
610                         if (infinite && !end_reachable)
611                                 return Reachability.CreateUnreachable ();
612
613                         return rc;
614                 }
615
616                 protected override void CloneTo (CloneContext clonectx, Statement t)
617                 {
618                         While target = (While) t;
619
620                         target.expr = expr.Clone (clonectx);
621                         target.Statement = Statement.Clone (clonectx);
622                 }
623                 
624                 public override object Accept (StructuralVisitor visitor)
625                 {
626                         return visitor.Visit (this);
627                 }
628
629                 public override void AddEndDefiniteAssignment (FlowAnalysisContext fc)
630                 {
631                         if (!infinite)
632                                 return;
633
634                         if (end_reachable_das == null)
635                                 end_reachable_das = new List<DefiniteAssignmentBitSet> ();
636
637                         end_reachable_das.Add (fc.DefiniteAssignment);
638                 }
639
640                 public override void SetEndReachable ()
641                 {
642                         end_reachable = true;
643                 }
644         }
645
646         public class For : LoopStatement
647         {
648                 bool infinite, empty, iterator_reachable, end_reachable;
649                 List<DefiniteAssignmentBitSet> end_reachable_das;
650                 
651                 public For (Location l)
652                         : base (null)
653                 {
654                         loc = l;
655                 }
656
657                 public Statement Initializer {
658                         get; set;
659                 }
660
661                 public Expression Condition {
662                         get; set;
663                 }
664
665                 public Statement Iterator {
666                         get; set;
667                 }
668
669                 public override bool Resolve (BlockContext bc)
670                 {
671                         Initializer.Resolve (bc);
672
673                         if (Condition != null) {
674                                 Condition = Condition.Resolve (bc);
675                                 var condition_constant = Condition as Constant;
676                                 if (condition_constant != null) {
677                                         if (condition_constant.IsDefaultValue) {
678                                                 empty = true;
679                                         } else {
680                                                 infinite = true;
681                                         }
682                                 }
683                         } else {
684                                 infinite = true;
685                         }
686
687                         return base.Resolve (bc) && Iterator.Resolve (bc);
688                 }
689
690                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
691                 {
692                         Initializer.FlowAnalysis (fc);
693
694                         DefiniteAssignmentBitSet da_false;
695                         if (Condition != null) {
696                                 Condition.FlowAnalysisConditional (fc);
697                                 fc.DefiniteAssignment = fc.DefiniteAssignmentOnTrue;
698                                 da_false = new DefiniteAssignmentBitSet (fc.DefiniteAssignmentOnFalse);
699                         } else {
700                                 da_false = fc.BranchDefiniteAssignment ();
701                         }
702
703                         Statement.FlowAnalysis (fc);
704
705                         Iterator.FlowAnalysis (fc);
706
707                         //
708                         // Special case infinite for with breaks
709                         //
710                         if (end_reachable_das != null) {
711                                 da_false = DefiniteAssignmentBitSet.And (end_reachable_das);
712                                 end_reachable_das = null;
713                         }
714
715                         fc.DefiniteAssignment = da_false;
716
717                         if (infinite && !end_reachable)
718                                 return true;
719
720                         return false;
721                 }
722
723                 public override Reachability MarkReachable (Reachability rc)
724                 {
725                         base.MarkReachable (rc);
726
727                         Initializer.MarkReachable (rc);
728
729                         var body_rc = Statement.MarkReachable (rc);
730                         if (!body_rc.IsUnreachable || iterator_reachable) {
731                                 Iterator.MarkReachable (rc);
732                         }
733
734                         //
735                         // When infinite for end is unreachable via break anything what follows is unreachable too
736                         //
737                         if (infinite && !end_reachable) {
738                                 return Reachability.CreateUnreachable ();
739                         }
740
741                         return rc;
742                 }
743
744                 protected override void DoEmit (EmitContext ec)
745                 {
746                         if (Initializer != null)
747                                 Initializer.Emit (ec);
748
749                         if (empty) {
750                                 Condition.EmitSideEffect (ec);
751                                 return;
752                         }
753
754                         Label old_begin = ec.LoopBegin;
755                         Label old_end = ec.LoopEnd;
756                         Label loop = ec.DefineLabel ();
757                         Label test = ec.DefineLabel ();
758
759                         ec.LoopBegin = ec.DefineLabel ();
760                         ec.LoopEnd = ec.DefineLabel ();
761
762                         ec.Emit (OpCodes.Br, test);
763                         ec.MarkLabel (loop);
764                         Statement.Emit (ec);
765
766                         ec.MarkLabel (ec.LoopBegin);
767                         Iterator.Emit (ec);
768
769                         ec.MarkLabel (test);
770                         //
771                         // If test is null, there is no test, and we are just
772                         // an infinite loop
773                         //
774                         if (Condition != null) {
775                                 ec.Mark (Condition.Location);
776
777                                 //
778                                 // The Resolve code already catches the case for
779                                 // Test == Constant (false) so we know that
780                                 // this is true
781                                 //
782                                 if (Condition is Constant) {
783                                         Condition.EmitSideEffect (ec);
784                                         ec.Emit (OpCodes.Br, loop);
785                                 } else {
786                                         Condition.EmitBranchable (ec, loop, true);
787                                 }
788                                 
789                         } else
790                                 ec.Emit (OpCodes.Br, loop);
791                         ec.MarkLabel (ec.LoopEnd);
792
793                         ec.LoopBegin = old_begin;
794                         ec.LoopEnd = old_end;
795                 }
796
797                 protected override void CloneTo (CloneContext clonectx, Statement t)
798                 {
799                         For target = (For) t;
800
801                         if (Initializer != null)
802                                 target.Initializer = Initializer.Clone (clonectx);
803                         if (Condition != null)
804                                 target.Condition = Condition.Clone (clonectx);
805                         if (Iterator != null)
806                                 target.Iterator = Iterator.Clone (clonectx);
807                         target.Statement = Statement.Clone (clonectx);
808                 }
809
810                 public override object Accept (StructuralVisitor visitor)
811                 {
812                         return visitor.Visit (this);
813                 }
814
815                 public override void AddEndDefiniteAssignment (FlowAnalysisContext fc)
816                 {
817                         if (!infinite)
818                                 return;
819
820                         if (end_reachable_das == null)
821                                 end_reachable_das = new List<DefiniteAssignmentBitSet> ();
822
823                         end_reachable_das.Add (fc.DefiniteAssignment);
824                 }
825
826                 public override void SetEndReachable ()
827                 {
828                         end_reachable = true;
829                 }
830
831                 public override void SetIteratorReachable ()
832                 {
833                         iterator_reachable = true;
834                 }
835         }
836
837         public abstract class LoopStatement : Statement
838         {
839                 protected LoopStatement (Statement statement)
840                 {
841                         Statement = statement;
842                 }
843
844                 public Statement Statement { get; set; }
845
846                 public override bool Resolve (BlockContext bc)
847                 {
848                         var prev_loop = bc.EnclosingLoop;
849                         var prev_los = bc.EnclosingLoopOrSwitch;
850                         bc.EnclosingLoopOrSwitch = bc.EnclosingLoop = this;
851                         var ok = Statement.Resolve (bc);
852                         bc.EnclosingLoopOrSwitch = prev_los;
853                         bc.EnclosingLoop = prev_loop;
854
855                         return ok;
856                 }
857
858                 //
859                 // Needed by possibly infinite loops statements (for, while) and switch statment
860                 //
861                 public virtual void AddEndDefiniteAssignment (FlowAnalysisContext fc)
862                 {
863                 }
864
865                 public virtual void SetEndReachable ()
866                 {
867                 }
868
869                 public virtual void SetIteratorReachable ()
870                 {
871                 }
872         }
873         
874         public class StatementExpression : Statement
875         {
876                 ExpressionStatement expr;
877                 
878                 public StatementExpression (ExpressionStatement expr)
879                 {
880                         this.expr = expr;
881                         loc = expr.StartLocation;
882                 }
883
884                 public StatementExpression (ExpressionStatement expr, Location loc)
885                 {
886                         this.expr = expr;
887                         this.loc = loc;
888                 }
889
890                 public ExpressionStatement Expr {
891                         get {
892                                 return this.expr;
893                         }
894                 }
895                 
896                 protected override void CloneTo (CloneContext clonectx, Statement t)
897                 {
898                         StatementExpression target = (StatementExpression) t;
899                         target.expr = (ExpressionStatement) expr.Clone (clonectx);
900                 }
901                 
902                 protected override void DoEmit (EmitContext ec)
903                 {
904                         expr.EmitStatement (ec);
905                 }
906
907                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
908                 {
909                         expr.FlowAnalysis (fc);
910                         return false;
911                 }
912
913                 public override Reachability MarkReachable (Reachability rc)
914                 {
915                         base.MarkReachable (rc);
916                         expr.MarkReachable (rc);
917                         return rc;
918                 }
919
920                 public override bool Resolve (BlockContext ec)
921                 {
922                         expr = expr.ResolveStatement (ec);
923                         return expr != null;
924                 }
925                 
926                 public override object Accept (StructuralVisitor visitor)
927                 {
928                         return visitor.Visit (this);
929                 }
930         }
931
932         public class StatementErrorExpression : Statement
933         {
934                 Expression expr;
935
936                 public StatementErrorExpression (Expression expr)
937                 {
938                         this.expr = expr;
939                         this.loc = expr.StartLocation;
940                 }
941
942                 public Expression Expr {
943                         get {
944                                 return expr;
945                         }
946                 }
947
948                 public override bool Resolve (BlockContext bc)
949                 {
950                         expr.Error_InvalidExpressionStatement (bc);
951                         return true;
952                 }
953
954                 protected override void DoEmit (EmitContext ec)
955                 {
956                         throw new NotSupportedException ();
957                 }
958
959                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
960                 {
961                         return false;
962                 }
963
964                 protected override void CloneTo (CloneContext clonectx, Statement target)
965                 {
966                         var t = (StatementErrorExpression) target;
967
968                         t.expr = expr.Clone (clonectx);
969                 }
970                 
971                 public override object Accept (StructuralVisitor visitor)
972                 {
973                         return visitor.Visit (this);
974                 }
975         }
976
977         //
978         // Simple version of statement list not requiring a block
979         //
980         public class StatementList : Statement
981         {
982                 List<Statement> statements;
983
984                 public StatementList (Statement first, Statement second)
985                 {
986                         statements = new List<Statement> { first, second };
987                 }
988
989                 #region Properties
990                 public IList<Statement> Statements {
991                         get {
992                                 return statements;
993                         }
994                 }
995                 #endregion
996
997                 public void Add (Statement statement)
998                 {
999                         statements.Add (statement);
1000                 }
1001
1002                 public override bool Resolve (BlockContext ec)
1003                 {
1004                         foreach (var s in statements)
1005                                 s.Resolve (ec);
1006
1007                         return true;
1008                 }
1009
1010                 protected override void DoEmit (EmitContext ec)
1011                 {
1012                         foreach (var s in statements)
1013                                 s.Emit (ec);
1014                 }
1015
1016                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
1017                 {
1018                         foreach (var s in statements)
1019                                 s.FlowAnalysis (fc);
1020
1021                         return false;
1022                 }
1023
1024                 public override Reachability MarkReachable (Reachability rc)
1025                 {
1026                         base.MarkReachable (rc);
1027
1028                         Reachability res = rc;
1029                         foreach (var s in statements)
1030                                 res = s.MarkReachable (rc);
1031
1032                         return res;
1033                 }
1034
1035                 protected override void CloneTo (CloneContext clonectx, Statement target)
1036                 {
1037                         StatementList t = (StatementList) target;
1038
1039                         t.statements = new List<Statement> (statements.Count);
1040                         foreach (Statement s in statements)
1041                                 t.statements.Add (s.Clone (clonectx));
1042                 }
1043                 
1044                 public override object Accept (StructuralVisitor visitor)
1045                 {
1046                         return visitor.Visit (this);
1047                 }
1048         }
1049
1050         //
1051         // For statements which require special handling when inside try or catch block
1052         //
1053         public abstract class ExitStatement : Statement
1054         {
1055                 protected bool unwind_protect;
1056
1057                 protected abstract bool DoResolve (BlockContext bc);
1058                 protected abstract bool IsLocalExit { get; }
1059
1060                 public override bool Resolve (BlockContext bc)
1061                 {
1062                         var res = DoResolve (bc);
1063
1064                         if (!IsLocalExit) {
1065                                 //
1066                                 // We are inside finally scope but is it the scope we are exiting
1067                                 //
1068                                 if (bc.HasSet (ResolveContext.Options.FinallyScope)) {
1069
1070                                         for (var b = bc.CurrentBlock; b != null; b = b.Parent) {
1071                                                 if (b.IsFinallyBlock) {
1072                                                         Error_FinallyClauseExit (bc);
1073                                                         break;
1074                                                 }
1075
1076                                                 if (b is ParametersBlock)
1077                                                         break;
1078                                         }
1079                                 }
1080                         }
1081
1082                         unwind_protect = bc.HasAny (ResolveContext.Options.TryScope | ResolveContext.Options.CatchScope);
1083                         return res;
1084                 }
1085
1086                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
1087                 {
1088                         if (IsLocalExit)
1089                                 return true;
1090
1091                         if (fc.TryFinally != null) {
1092                             fc.TryFinally.RegisterForControlExitCheck (new DefiniteAssignmentBitSet (fc.DefiniteAssignment));
1093                         } else {
1094                             fc.ParametersBlock.CheckControlExit (fc);
1095                         }
1096
1097                         return true;
1098                 }
1099         }
1100
1101         /// <summary>
1102         ///   Implements the return statement
1103         /// </summary>
1104         public class Return : ExitStatement
1105         {
1106                 Expression expr;
1107
1108                 public Return (Expression expr, Location l)
1109                 {
1110                         this.expr = expr;
1111                         loc = l;
1112                 }
1113
1114                 #region Properties
1115
1116                 public Expression Expr {
1117                         get {
1118                                 return expr;
1119                         }
1120                         protected set {
1121                                 expr = value;
1122                         }
1123                 }
1124
1125                 protected override bool IsLocalExit {
1126                         get {
1127                                 return false;
1128                         }
1129                 }
1130
1131                 #endregion
1132
1133                 protected override bool DoResolve (BlockContext ec)
1134                 {
1135                         var block_return_type = ec.ReturnType;
1136
1137                         if (expr == null) {
1138                                 if (block_return_type.Kind == MemberKind.Void || block_return_type == InternalType.ErrorType)
1139                                         return true;
1140
1141                                 //
1142                                 // Return must not be followed by an expression when
1143                                 // the method return type is Task
1144                                 //
1145                                 if (ec.CurrentAnonymousMethod is AsyncInitializer) {
1146                                         var storey = (AsyncTaskStorey) ec.CurrentAnonymousMethod.Storey;
1147                                         if (storey.ReturnType == ec.Module.PredefinedTypes.Task.TypeSpec) {
1148                                                 //
1149                                                 // Extra trick not to emit ret/leave inside awaiter body
1150                                                 //
1151                                                 expr = EmptyExpression.Null;
1152                                                 return true;
1153                                         }
1154
1155                                         if (storey.ReturnType.IsGenericTask)
1156                                                 block_return_type = storey.ReturnType.TypeArguments[0];
1157                                 }
1158
1159                                 if (ec.CurrentIterator != null) {
1160                                         Error_ReturnFromIterator (ec);
1161                                 } else if (block_return_type != InternalType.ErrorType) {
1162                                         ec.Report.Error (126, loc,
1163                                                 "An object of a type convertible to `{0}' is required for the return statement",
1164                                                 block_return_type.GetSignatureForError ());
1165                                 }
1166
1167                                 return false;
1168                         }
1169
1170                         expr = expr.Resolve (ec);
1171
1172                         AnonymousExpression am = ec.CurrentAnonymousMethod;
1173                         if (am == null) {
1174                                 if (block_return_type.Kind == MemberKind.Void) {
1175                                         ec.Report.Error (127, loc,
1176                                                 "`{0}': A return keyword must not be followed by any expression when method returns void",
1177                                                 ec.GetSignatureForError ());
1178
1179                                         return false;
1180                                 }
1181                         } else {
1182                                 if (am.IsIterator) {
1183                                         Error_ReturnFromIterator (ec);
1184                                         return false;
1185                                 }
1186
1187                                 var async_block = am as AsyncInitializer;
1188                                 if (async_block != null) {
1189                                         if (expr != null) {
1190                                                 var storey = (AsyncTaskStorey) am.Storey;
1191                                                 var async_type = storey.ReturnType;
1192
1193                                                 if (async_type == null && async_block.ReturnTypeInference != null) {
1194                                                         if (expr.Type.Kind == MemberKind.Void && !(this is ContextualReturn))
1195                                                                 ec.Report.Error (4029, loc, "Cannot return an expression of type `void'");
1196                                                         else
1197                                                                 async_block.ReturnTypeInference.AddCommonTypeBoundAsync (expr.Type);
1198                                                         return true;
1199                                                 }
1200
1201                                                 if (async_type.Kind == MemberKind.Void) {
1202                                                         ec.Report.Error (8030, loc,
1203                                                                 "Anonymous function or lambda expression converted to a void returning delegate cannot return a value");
1204                                                         return false;
1205                                                 }
1206
1207                                                 if (!async_type.IsGenericTask) {
1208                                                         if (this is ContextualReturn)
1209                                                                 return true;
1210
1211                                                         if (async_block.DelegateType != null) {
1212                                                                 ec.Report.Error (8031, loc,
1213                                                                         "Async lambda expression or anonymous method converted to a `Task' cannot return a value. Consider returning `Task<T>'");
1214                                                         } else {
1215                                                                 ec.Report.Error (1997, loc,
1216                                                                         "`{0}': A return keyword must not be followed by an expression when async method returns `Task'. Consider using `Task<T>' return type",
1217                                                                         ec.GetSignatureForError ());
1218                                                         }
1219                                                         return false;
1220                                                 }
1221
1222                                                 //
1223                                                 // The return type is actually Task<T> type argument
1224                                                 //
1225                                                 if (expr.Type == async_type && async_type.TypeArguments [0] != ec.Module.PredefinedTypes.Task.TypeSpec) {
1226                                                         ec.Report.Error (4016, loc,
1227                                                                 "`{0}': The return expression type of async method must be `{1}' rather than `Task<{1}>'",
1228                                                                 ec.GetSignatureForError (), async_type.TypeArguments[0].GetSignatureForError ());
1229                                                 } else {
1230                                                         block_return_type = async_type.TypeArguments[0];
1231                                                 }
1232                                         }
1233                                 } else {
1234                                         if (block_return_type.Kind == MemberKind.Void) {
1235                                                 ec.Report.Error (8030, loc,
1236                                                         "Anonymous function or lambda expression converted to a void returning delegate cannot return a value");
1237                                                 return false;
1238                                         }
1239
1240                                         var l = am as AnonymousMethodBody;
1241                                         if (l != null && expr != null) {
1242                                                 if (l.ReturnTypeInference != null) {
1243                                                         l.ReturnTypeInference.AddCommonTypeBound (expr.Type);
1244                                                         return true;
1245                                                 }
1246
1247                                                 //
1248                                                 // Try to optimize simple lambda. Only when optimizations are enabled not to cause
1249                                                 // unexpected debugging experience
1250                                                 //
1251                                                 if (this is ContextualReturn && !ec.IsInProbingMode && ec.Module.Compiler.Settings.Optimize) {
1252                                                         l.DirectMethodGroupConversion = expr.CanReduceLambda (l);
1253                                                 }
1254                                         }
1255                                 }
1256                         }
1257
1258                         if (expr == null)
1259                                 return false;
1260
1261                         if (expr.Type != block_return_type && expr.Type != InternalType.ErrorType) {
1262                                 expr = Convert.ImplicitConversionRequired (ec, expr, block_return_type, loc);
1263
1264                                 if (expr == null) {
1265                                         if (am != null && block_return_type == ec.ReturnType) {
1266                                                 ec.Report.Error (1662, loc,
1267                                                         "Cannot convert `{0}' to delegate type `{1}' because some of the return types in the block are not implicitly convertible to the delegate return type",
1268                                                         am.ContainerType, am.GetSignatureForError ());
1269                                         }
1270                                         return false;
1271                                 }
1272                         }
1273
1274                         return true;                    
1275                 }
1276                 
1277                 protected override void DoEmit (EmitContext ec)
1278                 {
1279                         if (expr != null) {
1280
1281                                 var async_body = ec.CurrentAnonymousMethod as AsyncInitializer;
1282                                 if (async_body != null) {
1283                                         var storey = (AsyncTaskStorey)async_body.Storey;
1284                                         Label exit_label = async_body.BodyEnd;
1285
1286                                         //
1287                                         // It's null for await without async
1288                                         //
1289                                         if (storey.HoistedReturnValue != null) {
1290                                                 //
1291                                                 // Special case hoisted return value (happens in try/finally scenario)
1292                                                 //
1293                                                 if (ec.TryFinallyUnwind != null) {
1294                                                         exit_label = TryFinally.EmitRedirectedReturn (ec, async_body);
1295                                                 }
1296
1297                                                 var async_return = (IAssignMethod)storey.HoistedReturnValue;
1298                                                 async_return.EmitAssign (ec, expr, false, false);
1299                                                 ec.EmitEpilogue ();
1300                                         } else {
1301                                                 expr.Emit (ec);
1302
1303                                                 if (ec.TryFinallyUnwind != null)
1304                                                         exit_label = TryFinally.EmitRedirectedReturn (ec, async_body);
1305                                         }
1306
1307                                         ec.Emit (OpCodes.Leave, exit_label);
1308                                         return;
1309                                 }
1310
1311                                 expr.Emit (ec);
1312                                 ec.EmitEpilogue ();
1313
1314                                 if (unwind_protect || ec.EmitAccurateDebugInfo)
1315                                         ec.Emit (OpCodes.Stloc, ec.TemporaryReturn ());
1316                         }
1317
1318                         if (unwind_protect) {
1319                                 ec.Emit (OpCodes.Leave, ec.CreateReturnLabel ());
1320                         } else if (ec.EmitAccurateDebugInfo) {
1321                                 ec.Emit (OpCodes.Br, ec.CreateReturnLabel ());
1322                         } else {
1323                                 ec.Emit (OpCodes.Ret);
1324                         }
1325                 }
1326
1327                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
1328                 {
1329                         if (expr != null)
1330                                 expr.FlowAnalysis (fc);
1331
1332                         base.DoFlowAnalysis (fc);
1333                         return true;
1334                 }
1335
1336                 void Error_ReturnFromIterator (ResolveContext rc)
1337                 {
1338                         rc.Report.Error (1622, loc,
1339                                 "Cannot return a value from iterators. Use the yield return statement to return a value, or yield break to end the iteration");
1340                 }
1341
1342                 public override Reachability MarkReachable (Reachability rc)
1343                 {
1344                         base.MarkReachable (rc);
1345                         return Reachability.CreateUnreachable ();
1346                 }
1347
1348                 protected override void CloneTo (CloneContext clonectx, Statement t)
1349                 {
1350                         Return target = (Return) t;
1351                         // It's null for simple return;
1352                         if (expr != null)
1353                                 target.expr = expr.Clone (clonectx);
1354                 }
1355
1356                 public override object Accept (StructuralVisitor visitor)
1357                 {
1358                         return visitor.Visit (this);
1359                 }
1360         }
1361
1362         public class Goto : ExitStatement
1363         {
1364                 string target;
1365                 LabeledStatement label;
1366                 TryFinally try_finally;
1367
1368                 public Goto (string label, Location l)
1369                 {
1370                         loc = l;
1371                         target = label;
1372                 }
1373
1374                 public string Target {
1375                         get { return target; }
1376                 }
1377
1378                 protected override bool IsLocalExit {
1379                         get {
1380                                 return true;
1381                         }
1382                 }
1383
1384                 protected override bool DoResolve (BlockContext bc)
1385                 {
1386                         label = bc.CurrentBlock.LookupLabel (target);
1387                         if (label == null) {
1388                                 Error_UnknownLabel (bc, target, loc);
1389                                 return false;
1390                         }
1391
1392                         try_finally = bc.CurrentTryBlock as TryFinally;
1393
1394                         CheckExitBoundaries (bc, label.Block);
1395
1396                         return true;
1397                 }
1398
1399                 public static void Error_UnknownLabel (BlockContext bc, string label, Location loc)
1400                 {
1401                         bc.Report.Error (159, loc, "The label `{0}:' could not be found within the scope of the goto statement",
1402                                 label);
1403                 }
1404
1405                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
1406                 {
1407                         // Goto to unreachable label
1408                         if (label == null)
1409                                 return true;
1410
1411                         if (fc.AddReachedLabel (label))
1412                                 return true;
1413
1414                         label.Block.ScanGotoJump (label, fc);
1415                         return true;
1416                 }
1417
1418                 public override Reachability MarkReachable (Reachability rc)
1419                 {
1420                         if (rc.IsUnreachable)
1421                                 return rc;
1422
1423                         base.MarkReachable (rc);
1424
1425                         if (try_finally != null) {
1426                                 if (try_finally.FinallyBlock.HasReachableClosingBrace) {
1427                                         label.AddGotoReference (rc);
1428                                 } else {
1429                                         label = null;
1430                                 }
1431                         } else {
1432                                 label.AddGotoReference (rc);
1433                         }
1434
1435                         return Reachability.CreateUnreachable ();
1436                 }
1437
1438                 protected override void CloneTo (CloneContext clonectx, Statement target)
1439                 {
1440                         // Nothing to clone
1441                 }
1442
1443                 protected override void DoEmit (EmitContext ec)
1444                 {
1445                         // This should only happen for goto from try block to unrechable label
1446                         if (label == null)
1447                                 return;
1448
1449                         Label l = label.LabelTarget (ec);
1450
1451                         if (ec.TryFinallyUnwind != null && IsLeavingFinally (label.Block)) {
1452                                 var async_body = (AsyncInitializer) ec.CurrentAnonymousMethod;
1453                                 l = TryFinally.EmitRedirectedJump (ec, async_body, l, label.Block);
1454                         }
1455
1456                         ec.Emit (unwind_protect ? OpCodes.Leave : OpCodes.Br, l);
1457                 }
1458
1459                 bool IsLeavingFinally (Block labelBlock)
1460                 {
1461                         var b = try_finally.Statement as Block;
1462                         while (b != null) {
1463                                 if (b == labelBlock)
1464                                         return true;
1465
1466                                 b = b.Parent;
1467                         }
1468
1469                         return false;
1470                 }
1471                 
1472                 public override object Accept (StructuralVisitor visitor)
1473                 {
1474                         return visitor.Visit (this);
1475                 }
1476         }
1477
1478         public class LabeledStatement : Statement {
1479                 string name;
1480                 bool defined;
1481                 bool referenced;
1482                 Label label;
1483                 Block block;
1484                 
1485                 public LabeledStatement (string name, Block block, Location l)
1486                 {
1487                         this.name = name;
1488                         this.block = block;
1489                         this.loc = l;
1490                 }
1491
1492                 public Label LabelTarget (EmitContext ec)
1493                 {
1494                         if (defined)
1495                                 return label;
1496
1497                         label = ec.DefineLabel ();
1498                         defined = true;
1499                         return label;
1500                 }
1501
1502                 public Block Block {
1503                         get {
1504                                 return block;
1505                         }
1506                 }
1507
1508                 public string Name {
1509                         get { return name; }
1510                 }
1511
1512                 protected override void CloneTo (CloneContext clonectx, Statement target)
1513                 {
1514                         var t = (LabeledStatement) target;
1515
1516                         t.block = clonectx.RemapBlockCopy (block);
1517                 }
1518
1519                 public override bool Resolve (BlockContext bc)
1520                 {
1521                         return true;
1522                 }
1523
1524                 protected override void DoEmit (EmitContext ec)
1525                 {
1526                         LabelTarget (ec);
1527                         ec.MarkLabel (label);
1528                 }
1529
1530                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
1531                 {
1532                         if (!referenced) {
1533                                 fc.Report.Warning (164, 2, loc, "This label has not been referenced");
1534                         }
1535
1536                         return false;
1537                 }
1538
1539                 public override Reachability MarkReachable (Reachability rc)
1540                 {
1541                         base.MarkReachable (rc);
1542
1543                         if (referenced)
1544                                 rc = new Reachability ();
1545
1546                         return rc;
1547                 }
1548
1549                 public void AddGotoReference (Reachability rc)
1550                 {
1551                         if (referenced)
1552                                 return;
1553
1554                         referenced = true;
1555                         MarkReachable (rc);
1556
1557                         block.ScanGotoJump (this);
1558                 }
1559
1560                 public override object Accept (StructuralVisitor visitor)
1561                 {
1562                         return visitor.Visit (this);
1563                 }
1564         }
1565         
1566
1567         /// <summary>
1568         ///   `goto default' statement
1569         /// </summary>
1570         public class GotoDefault : SwitchGoto
1571         {               
1572                 public GotoDefault (Location l)
1573                         : base (l)
1574                 {
1575                 }
1576
1577                 public override bool Resolve (BlockContext bc)
1578                 {
1579                         if (bc.Switch == null) {
1580                                 Error_GotoCaseRequiresSwitchBlock (bc);
1581                                 return false;
1582                         }
1583
1584                         bc.Switch.RegisterGotoCase (null, null);
1585                         base.Resolve (bc);
1586
1587                         return true;
1588                 }
1589
1590                 protected override void DoEmit (EmitContext ec)
1591                 {
1592                         ec.Emit (unwind_protect ? OpCodes.Leave : OpCodes.Br, ec.Switch.DefaultLabel.GetILLabel (ec));
1593                 }
1594
1595                 public override Reachability MarkReachable (Reachability rc)
1596                 {
1597                         if (!rc.IsUnreachable) {
1598                                 var label = switch_statement.DefaultLabel;
1599                                 if (label.IsUnreachable) {
1600                                         label.MarkReachable (rc);
1601                                         switch_statement.Block.ScanGotoJump (label);
1602                                 }
1603                         }
1604
1605                         return base.MarkReachable (rc);
1606                 }
1607
1608                 public override object Accept (StructuralVisitor visitor)
1609                 {
1610                         return visitor.Visit (this);
1611                 }
1612         }
1613
1614         /// <summary>
1615         ///   `goto case' statement
1616         /// </summary>
1617         public class GotoCase : SwitchGoto
1618         {
1619                 Expression expr;
1620                 
1621                 public GotoCase (Expression e, Location l)
1622                         : base (l)
1623                 {
1624                         expr = e;
1625                 }
1626
1627                 public Expression Expr {
1628                         get {
1629                                 return expr;
1630                         }
1631                 }
1632
1633                 public SwitchLabel Label { get; set; }
1634
1635                 public override bool Resolve (BlockContext ec)
1636                 {
1637                         if (ec.Switch == null) {
1638                                 Error_GotoCaseRequiresSwitchBlock (ec);
1639                                 return false;
1640                         }
1641
1642                         Constant c = expr.ResolveLabelConstant (ec);
1643                         if (c == null) {
1644                                 return false;
1645                         }
1646
1647                         Constant res;
1648                         if (ec.Switch.IsNullable && c is NullLiteral) {
1649                                 res = c;
1650                         } else {
1651                                 TypeSpec type = ec.Switch.SwitchType;
1652                                 res = c.Reduce (ec, type);
1653                                 if (res == null) {
1654                                         c.Error_ValueCannotBeConverted (ec, type, true);
1655                                         return false;
1656                                 }
1657
1658                                 if (!Convert.ImplicitStandardConversionExists (c, type))
1659                                         ec.Report.Warning (469, 2, loc,
1660                                                 "The `goto case' value is not implicitly convertible to type `{0}'",
1661                                                 type.GetSignatureForError ());
1662
1663                         }
1664
1665                         ec.Switch.RegisterGotoCase (this, res);
1666                         base.Resolve (ec);
1667                         expr = res;
1668
1669                         return true;
1670                 }
1671
1672                 protected override void DoEmit (EmitContext ec)
1673                 {
1674                         ec.Emit (unwind_protect ? OpCodes.Leave : OpCodes.Br, Label.GetILLabel (ec));
1675                 }
1676
1677                 protected override void CloneTo (CloneContext clonectx, Statement t)
1678                 {
1679                         GotoCase target = (GotoCase) t;
1680
1681                         target.expr = expr.Clone (clonectx);
1682                 }
1683
1684                 public override Reachability MarkReachable (Reachability rc)
1685                 {
1686                         if (!rc.IsUnreachable) {
1687                                 var label = switch_statement.FindLabel ((Constant) expr);
1688                                 if (label.IsUnreachable) {
1689                                         label.MarkReachable (rc);
1690                                         switch_statement.Block.ScanGotoJump (label);
1691                                 }
1692                         }
1693
1694                         return base.MarkReachable (rc);
1695                 }
1696                 
1697                 public override object Accept (StructuralVisitor visitor)
1698                 {
1699                         return visitor.Visit (this);
1700                 }
1701         }
1702
1703         public abstract class SwitchGoto : Statement
1704         {
1705                 protected bool unwind_protect;
1706                 protected Switch switch_statement;
1707
1708                 protected SwitchGoto (Location loc)
1709                 {
1710                         this.loc = loc;
1711                 }
1712
1713                 protected override void CloneTo (CloneContext clonectx, Statement target)
1714                 {
1715                         // Nothing to clone
1716                 }
1717
1718                 public override bool Resolve (BlockContext bc)
1719                 {
1720                         CheckExitBoundaries (bc, bc.Switch.Block);
1721
1722                         unwind_protect = bc.HasAny (ResolveContext.Options.TryScope | ResolveContext.Options.CatchScope);
1723                         switch_statement = bc.Switch;
1724
1725                         return true;
1726                 }
1727
1728                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
1729                 {
1730                         return true;
1731                 }
1732
1733                 public override Reachability MarkReachable (Reachability rc)
1734                 {
1735                         base.MarkReachable (rc);
1736                         return Reachability.CreateUnreachable ();
1737                 }
1738
1739                 protected void Error_GotoCaseRequiresSwitchBlock (BlockContext bc)
1740                 {
1741                         bc.Report.Error (153, loc, "A goto case is only valid inside a switch statement");
1742                 }
1743         }
1744         
1745         public class Throw : Statement {
1746                 Expression expr;
1747                 
1748                 public Throw (Expression expr, Location l)
1749                 {
1750                         this.expr = expr;
1751                         loc = l;
1752                 }
1753
1754                 public Expression Expr {
1755                         get {
1756                                 return this.expr;
1757                         }
1758                 }
1759
1760                 public override bool Resolve (BlockContext ec)
1761                 {
1762                         if (expr == null) {
1763                                 if (!ec.HasSet (ResolveContext.Options.CatchScope)) {
1764                                         ec.Report.Error (156, loc, "A throw statement with no arguments is not allowed outside of a catch clause");
1765                                 } else if (ec.HasSet (ResolveContext.Options.FinallyScope)) {
1766                                         for (var b = ec.CurrentBlock; b != null && !b.IsCatchBlock; b = b.Parent) {
1767                                                 if (b.IsFinallyBlock) {
1768                                                         ec.Report.Error (724, loc,
1769                                                                 "A throw statement with no arguments is not allowed inside of a finally clause nested inside of the innermost catch clause");
1770                                                         break;
1771                                                 }
1772                                         }
1773                                 }
1774
1775                                 return true;
1776                         }
1777
1778                         expr = expr.Resolve (ec, ResolveFlags.Type | ResolveFlags.VariableOrValue);
1779
1780                         if (expr == null)
1781                                 return false;
1782
1783                         var et = ec.BuiltinTypes.Exception;
1784                         if (Convert.ImplicitConversionExists (ec, expr, et))
1785                                 expr = Convert.ImplicitConversion (ec, expr, et, loc);
1786                         else
1787                                 ec.Report.Error (155, expr.Location, "The type caught or thrown must be derived from System.Exception");
1788
1789                         return true;
1790                 }
1791                         
1792                 protected override void DoEmit (EmitContext ec)
1793                 {
1794                         if (expr == null) {
1795                                 var atv = ec.AsyncThrowVariable;
1796                                 if (atv != null) {
1797                                         if (atv.HoistedVariant != null) {
1798                                                 atv.HoistedVariant.Emit (ec);
1799                                         } else {
1800                                                 atv.Emit (ec);
1801                                         }
1802
1803                                         ec.Emit (OpCodes.Throw);
1804                                 } else {
1805                                         ec.Emit (OpCodes.Rethrow);
1806                                 }
1807                         } else {
1808                                 expr.Emit (ec);
1809
1810                                 ec.Emit (OpCodes.Throw);
1811                         }
1812                 }
1813
1814                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
1815                 {
1816                         if (expr != null)
1817                                 expr.FlowAnalysis (fc);
1818
1819                         return true;
1820                 }
1821
1822                 public override Reachability MarkReachable (Reachability rc)
1823                 {
1824                         base.MarkReachable (rc);
1825                         return Reachability.CreateUnreachable ();
1826                 }
1827
1828                 protected override void CloneTo (CloneContext clonectx, Statement t)
1829                 {
1830                         Throw target = (Throw) t;
1831
1832                         if (expr != null)
1833                                 target.expr = expr.Clone (clonectx);
1834                 }
1835                 
1836                 public override object Accept (StructuralVisitor visitor)
1837                 {
1838                         return visitor.Visit (this);
1839                 }
1840         }
1841
1842         public class Break : LocalExitStatement
1843         {               
1844                 public Break (Location l)
1845                         : base (l)
1846                 {
1847                 }
1848                 
1849                 public override object Accept (StructuralVisitor visitor)
1850                 {
1851                         return visitor.Visit (this);
1852                 }
1853
1854                 protected override void DoEmit (EmitContext ec)
1855                 {
1856                         var l = ec.LoopEnd;
1857
1858                         if (ec.TryFinallyUnwind != null) {
1859                                 var async_body = (AsyncInitializer) ec.CurrentAnonymousMethod;
1860                                 l = TryFinally.EmitRedirectedJump (ec, async_body, l, enclosing_loop.Statement as Block);
1861                         }
1862
1863                         ec.Emit (unwind_protect ? OpCodes.Leave : OpCodes.Br, l);
1864                 }
1865
1866                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
1867                 {
1868                         enclosing_loop.AddEndDefiniteAssignment (fc);
1869                         return true;
1870                 }
1871
1872                 protected override bool DoResolve (BlockContext bc)
1873                 {
1874                         enclosing_loop = bc.EnclosingLoopOrSwitch;
1875                         return base.DoResolve (bc);
1876                 }
1877
1878                 public override Reachability MarkReachable (Reachability rc)
1879                 {
1880                         base.MarkReachable (rc);
1881
1882                         if (!rc.IsUnreachable)
1883                                 enclosing_loop.SetEndReachable ();
1884
1885                         return Reachability.CreateUnreachable ();
1886                 }
1887         }
1888
1889         public class Continue : LocalExitStatement
1890         {               
1891                 public Continue (Location l)
1892                         : base (l)
1893                 {
1894                 }
1895
1896                 public override object Accept (StructuralVisitor visitor)
1897                 {
1898                         return visitor.Visit (this);
1899                 }
1900
1901
1902                 protected override void DoEmit (EmitContext ec)
1903                 {
1904                         var l = ec.LoopBegin;
1905
1906                         if (ec.TryFinallyUnwind != null) {
1907                                 var async_body = (AsyncInitializer) ec.CurrentAnonymousMethod;
1908                                 l = TryFinally.EmitRedirectedJump (ec, async_body, l, enclosing_loop.Statement as Block);
1909                         }
1910
1911                         ec.Emit (unwind_protect ? OpCodes.Leave : OpCodes.Br, l);
1912                 }
1913
1914                 protected override bool DoResolve (BlockContext bc)
1915                 {
1916                         enclosing_loop = bc.EnclosingLoop;
1917                         return base.DoResolve (bc);
1918                 }
1919
1920                 public override Reachability MarkReachable (Reachability rc)
1921                 {
1922                         base.MarkReachable (rc);
1923
1924                         if (!rc.IsUnreachable)
1925                                 enclosing_loop.SetIteratorReachable ();
1926
1927                         return Reachability.CreateUnreachable ();
1928                 }
1929         }
1930
1931         public abstract class LocalExitStatement : ExitStatement
1932         {
1933                 protected LoopStatement enclosing_loop;
1934
1935                 protected LocalExitStatement (Location loc)
1936                 {
1937                         this.loc = loc;
1938                 }
1939
1940                 protected override bool IsLocalExit {
1941                         get {
1942                                 return true;
1943                         }
1944                 }
1945
1946                 protected override void CloneTo (CloneContext clonectx, Statement t)
1947                 {
1948                         // nothing needed.
1949                 }
1950
1951                 protected override bool DoResolve (BlockContext bc)
1952                 {
1953                         if (enclosing_loop == null) {
1954                                 bc.Report.Error (139, loc, "No enclosing loop out of which to break or continue");
1955                                 return false;
1956                         }
1957
1958                         var block = enclosing_loop.Statement as Block;
1959
1960                         // Don't need to do extra checks for simple statements loops
1961                         if (block != null) {
1962                                 CheckExitBoundaries (bc, block);
1963                         }
1964
1965                         return true;
1966                 }
1967         }
1968
1969         public interface ILocalVariable
1970         {
1971                 void Emit (EmitContext ec);
1972                 void EmitAssign (EmitContext ec);
1973                 void EmitAddressOf (EmitContext ec);
1974         }
1975
1976         public interface INamedBlockVariable
1977         {
1978                 Block Block { get; }
1979                 Expression CreateReferenceExpression (ResolveContext rc, Location loc);
1980                 bool IsDeclared { get; }
1981                 bool IsParameter { get; }
1982                 Location Location { get; }
1983         }
1984
1985         public class BlockVariableDeclarator
1986         {
1987                 LocalVariable li;
1988                 Expression initializer;
1989
1990                 public BlockVariableDeclarator (LocalVariable li, Expression initializer)
1991                 {
1992                         if (li.Type != null)
1993                                 throw new ArgumentException ("Expected null variable type");
1994
1995                         this.li = li;
1996                         this.initializer = initializer;
1997                 }
1998
1999                 #region Properties
2000
2001                 public LocalVariable Variable {
2002                         get {
2003                                 return li;
2004                         }
2005                 }
2006
2007                 public Expression Initializer {
2008                         get {
2009                                 return initializer;
2010                         }
2011                         set {
2012                                 initializer = value;
2013                         }
2014                 }
2015
2016                 #endregion
2017
2018                 public virtual BlockVariableDeclarator Clone (CloneContext cloneCtx)
2019                 {
2020                         var t = (BlockVariableDeclarator) MemberwiseClone ();
2021                         if (initializer != null)
2022                                 t.initializer = initializer.Clone (cloneCtx);
2023
2024                         return t;
2025                 }
2026         }
2027
2028         public class BlockVariable : Statement
2029         {
2030                 Expression initializer;
2031                 protected FullNamedExpression type_expr;
2032                 protected LocalVariable li;
2033                 protected List<BlockVariableDeclarator> declarators;
2034                 TypeSpec type;
2035
2036                 public BlockVariable (FullNamedExpression type, LocalVariable li)
2037                 {
2038                         this.type_expr = type;
2039                         this.li = li;
2040                         this.loc = type_expr.Location;
2041                 }
2042
2043                 protected BlockVariable (LocalVariable li)
2044                 {
2045                         this.li = li;
2046                 }
2047
2048                 #region Properties
2049
2050                 public List<BlockVariableDeclarator> Declarators {
2051                         get {
2052                                 return declarators;
2053                         }
2054                 }
2055
2056                 public Expression Initializer {
2057                         get {
2058                                 return initializer;
2059                         }
2060                         set {
2061                                 initializer = value;
2062                         }
2063                 }
2064
2065                 public FullNamedExpression TypeExpression {
2066                         get {
2067                                 return type_expr;
2068                         }
2069                 }
2070
2071                 public LocalVariable Variable {
2072                         get {
2073                                 return li;
2074                         }
2075                 }
2076
2077                 #endregion
2078
2079                 public void AddDeclarator (BlockVariableDeclarator decl)
2080                 {
2081                         if (declarators == null)
2082                                 declarators = new List<BlockVariableDeclarator> ();
2083
2084                         declarators.Add (decl);
2085                 }
2086
2087                 static void CreateEvaluatorVariable (BlockContext bc, LocalVariable li)
2088                 {
2089                         if (bc.Report.Errors != 0)
2090                                 return;
2091
2092                         var container = bc.CurrentMemberDefinition.Parent.PartialContainer;
2093
2094                         Field f = new Field (container, new TypeExpression (li.Type, li.Location), Modifiers.PUBLIC | Modifiers.STATIC,
2095                                 new MemberName (li.Name, li.Location), null);
2096
2097                         container.AddField (f);
2098                         f.Define ();
2099
2100                         li.HoistedVariant = new HoistedEvaluatorVariable (f);
2101                         li.SetIsUsed ();
2102                 }
2103
2104                 public override bool Resolve (BlockContext bc)
2105                 {
2106                         return Resolve (bc, true);
2107                 }
2108
2109                 public bool Resolve (BlockContext bc, bool resolveDeclaratorInitializers)
2110                 {
2111                         if (type == null && !li.IsCompilerGenerated) {
2112                                 var vexpr = type_expr as VarExpr;
2113
2114                                 //
2115                                 // C# 3.0 introduced contextual keywords (var) which behaves like a type if type with
2116                                 // same name exists or as a keyword when no type was found
2117                                 //
2118                                 if (vexpr != null && !vexpr.IsPossibleType (bc)) {
2119                                         if (bc.Module.Compiler.Settings.Version < LanguageVersion.V_3)
2120                                                 bc.Report.FeatureIsNotAvailable (bc.Module.Compiler, loc, "implicitly typed local variable");
2121
2122                                         if (li.IsFixed) {
2123                                                 bc.Report.Error (821, loc, "A fixed statement cannot use an implicitly typed local variable");
2124                                                 return false;
2125                                         }
2126
2127                                         if (li.IsConstant) {
2128                                                 bc.Report.Error (822, loc, "An implicitly typed local variable cannot be a constant");
2129                                                 return false;
2130                                         }
2131
2132                                         if (Initializer == null) {
2133                                                 bc.Report.Error (818, loc, "An implicitly typed local variable declarator must include an initializer");
2134                                                 return false;
2135                                         }
2136
2137                                         if (declarators != null) {
2138                                                 bc.Report.Error (819, loc, "An implicitly typed local variable declaration cannot include multiple declarators");
2139                                                 declarators = null;
2140                                         }
2141
2142                                         Initializer = Initializer.Resolve (bc);
2143                                         if (Initializer != null) {
2144                                                 ((VarExpr) type_expr).InferType (bc, Initializer);
2145                                                 type = type_expr.Type;
2146                                         } else {
2147                                                 // Set error type to indicate the var was placed correctly but could
2148                                                 // not be infered
2149                                                 //
2150                                                 // var a = missing ();
2151                                                 //
2152                                                 type = InternalType.ErrorType;
2153                                         }
2154                                 }
2155
2156                                 if (type == null) {
2157                                         type = type_expr.ResolveAsType (bc);
2158                                         if (type == null)
2159                                                 return false;
2160
2161                                         if (li.IsConstant && !type.IsConstantCompatible) {
2162                                                 Const.Error_InvalidConstantType (type, loc, bc.Report);
2163                                         }
2164                                 }
2165
2166                                 if (type.IsStatic)
2167                                         FieldBase.Error_VariableOfStaticClass (loc, li.Name, type, bc.Report);
2168
2169                                 li.Type = type;
2170                         }
2171
2172                         bool eval_global = bc.Module.Compiler.Settings.StatementMode && bc.CurrentBlock is ToplevelBlock;
2173                         if (eval_global) {
2174                                 CreateEvaluatorVariable (bc, li);
2175                         } else if (type != InternalType.ErrorType) {
2176                                 li.PrepareAssignmentAnalysis (bc);
2177                         }
2178
2179                         if (initializer != null) {
2180                                 initializer = ResolveInitializer (bc, li, initializer);
2181                                 // li.Variable.DefinitelyAssigned 
2182                         }
2183
2184                         if (declarators != null) {
2185                                 foreach (var d in declarators) {
2186                                         d.Variable.Type = li.Type;
2187                                         if (eval_global) {
2188                                                 CreateEvaluatorVariable (bc, d.Variable);
2189                                         } else if (type != InternalType.ErrorType) {
2190                                                 d.Variable.PrepareAssignmentAnalysis (bc);
2191                                         }
2192
2193                                         if (d.Initializer != null && resolveDeclaratorInitializers) {
2194                                                 d.Initializer = ResolveInitializer (bc, d.Variable, d.Initializer);
2195                                                 // d.Variable.DefinitelyAssigned 
2196                                         } 
2197                                 }
2198                         }
2199
2200                         return true;
2201                 }
2202
2203                 protected virtual Expression ResolveInitializer (BlockContext bc, LocalVariable li, Expression initializer)
2204                 {
2205                         var a = new SimpleAssign (li.CreateReferenceExpression (bc, li.Location), initializer, li.Location);
2206                         return a.ResolveStatement (bc);
2207                 }
2208
2209                 protected override void DoEmit (EmitContext ec)
2210                 {
2211                         li.CreateBuilder (ec);
2212
2213                         if (Initializer != null && !IsUnreachable)
2214                                 ((ExpressionStatement) Initializer).EmitStatement (ec);
2215
2216                         if (declarators != null) {
2217                                 foreach (var d in declarators) {
2218                                         d.Variable.CreateBuilder (ec);
2219                                         if (d.Initializer != null && !IsUnreachable) {
2220                                                 ec.Mark (d.Variable.Location);
2221                                                 ((ExpressionStatement) d.Initializer).EmitStatement (ec);
2222                                         }
2223                                 }
2224                         }
2225                 }
2226
2227                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
2228                 {
2229                         if (Initializer != null)
2230                                 Initializer.FlowAnalysis (fc);
2231
2232                         if (declarators != null) {
2233                                 foreach (var d in declarators) {
2234                                         if (d.Initializer != null)
2235                                                 d.Initializer.FlowAnalysis (fc);
2236                                 }
2237                         }
2238
2239                         return false;
2240                 }
2241
2242                 public override Reachability MarkReachable (Reachability rc)
2243                 {
2244                         var init = initializer as ExpressionStatement;
2245                         if (init != null)
2246                                 init.MarkReachable (rc);
2247
2248                         return base.MarkReachable (rc);
2249                 }
2250
2251                 protected override void CloneTo (CloneContext clonectx, Statement target)
2252                 {
2253                         BlockVariable t = (BlockVariable) target;
2254
2255                         if (type_expr != null)
2256                                 t.type_expr = (FullNamedExpression) type_expr.Clone (clonectx);
2257
2258                         if (initializer != null)
2259                                 t.initializer = initializer.Clone (clonectx);
2260
2261                         if (declarators != null) {
2262                                 t.declarators = null;
2263                                 foreach (var d in declarators)
2264                                         t.AddDeclarator (d.Clone (clonectx));
2265                         }
2266                 }
2267
2268                 public override object Accept (StructuralVisitor visitor)
2269                 {
2270                         return visitor.Visit (this);
2271                 }
2272         }
2273
2274         public class BlockConstant : BlockVariable
2275         {
2276                 public BlockConstant (FullNamedExpression type, LocalVariable li)
2277                         : base (type, li)
2278                 {
2279                 }
2280
2281                 public override void Emit (EmitContext ec)
2282                 {
2283                         // Nothing to emit, not even sequence point
2284                 }
2285
2286                 protected override Expression ResolveInitializer (BlockContext bc, LocalVariable li, Expression initializer)
2287                 {
2288                         initializer = initializer.Resolve (bc);
2289                         if (initializer == null)
2290                                 return null;
2291
2292                         var c = initializer as Constant;
2293                         if (c == null) {
2294                                 initializer.Error_ExpressionMustBeConstant (bc, initializer.Location, li.Name);
2295                                 return null;
2296                         }
2297
2298                         c = c.ConvertImplicitly (li.Type);
2299                         if (c == null) {
2300                                 if (TypeSpec.IsReferenceType (li.Type))
2301                                         initializer.Error_ConstantCanBeInitializedWithNullOnly (bc, li.Type, initializer.Location, li.Name);
2302                                 else
2303                                         initializer.Error_ValueCannotBeConverted (bc, li.Type, false);
2304
2305                                 return null;
2306                         }
2307
2308                         li.ConstantValue = c;
2309                         return initializer;
2310                 }
2311                 
2312                 public override object Accept (StructuralVisitor visitor)
2313                 {
2314                         return visitor.Visit (this);
2315                 }
2316         }
2317
2318         //
2319         // The information about a user-perceived local variable
2320         //
2321         public sealed class LocalVariable : INamedBlockVariable, ILocalVariable
2322         {
2323                 [Flags]
2324                 public enum Flags
2325                 {
2326                         Used = 1,
2327                         IsThis = 1 << 1,
2328                         AddressTaken = 1 << 2,
2329                         CompilerGenerated = 1 << 3,
2330                         Constant = 1 << 4,
2331                         ForeachVariable = 1 << 5,
2332                         FixedVariable = 1 << 6,
2333                         UsingVariable = 1 << 7,
2334                         IsLocked = 1 << 8,
2335                         SymbolFileHidden = 1 << 9,
2336
2337                         ReadonlyMask = ForeachVariable | FixedVariable | UsingVariable
2338                 }
2339
2340                 TypeSpec type;
2341                 readonly string name;
2342                 readonly Location loc;
2343                 readonly Block block;
2344                 Flags flags;
2345                 Constant const_value;
2346
2347                 public VariableInfo VariableInfo;
2348                 HoistedVariable hoisted_variant;
2349
2350                 LocalBuilder builder;
2351
2352                 public LocalVariable (Block block, string name, Location loc)
2353                 {
2354                         this.block = block;
2355                         this.name = name;
2356                         this.loc = loc;
2357                 }
2358
2359                 public LocalVariable (Block block, string name, Flags flags, Location loc)
2360                         : this (block, name, loc)
2361                 {
2362                         this.flags = flags;
2363                 }
2364
2365                 //
2366                 // Used by variable declarators
2367                 //
2368                 public LocalVariable (LocalVariable li, string name, Location loc)
2369                         : this (li.block, name, li.flags, loc)
2370                 {
2371                 }
2372
2373                 #region Properties
2374
2375                 public bool AddressTaken {
2376                         get {
2377                                 return (flags & Flags.AddressTaken) != 0;
2378                         }
2379                 }
2380
2381                 public Block Block {
2382                         get {
2383                                 return block;
2384                         }
2385                 }
2386
2387                 public Constant ConstantValue {
2388                         get {
2389                                 return const_value;
2390                         }
2391                         set {
2392                                 const_value = value;
2393                         }
2394                 }
2395
2396                 //
2397                 // Hoisted local variable variant
2398                 //
2399                 public HoistedVariable HoistedVariant {
2400                         get {
2401                                 return hoisted_variant;
2402                         }
2403                         set {
2404                                 hoisted_variant = value;
2405                         }
2406                 }
2407
2408                 public bool IsDeclared {
2409                         get {
2410                                 return type != null;
2411                         }
2412                 }
2413
2414                 public bool IsCompilerGenerated {
2415                         get {
2416                                 return (flags & Flags.CompilerGenerated) != 0;
2417                         }
2418                 }
2419
2420                 public bool IsConstant {
2421                         get {
2422                                 return (flags & Flags.Constant) != 0;
2423                         }
2424                 }
2425
2426                 public bool IsLocked {
2427                         get {
2428                                 return (flags & Flags.IsLocked) != 0;
2429                         }
2430                         set {
2431                                 flags = value ? flags | Flags.IsLocked : flags & ~Flags.IsLocked;
2432                         }
2433                 }
2434
2435                 public bool IsThis {
2436                         get {
2437                                 return (flags & Flags.IsThis) != 0;
2438                         }
2439                 }
2440
2441                 public bool IsFixed {
2442                         get {
2443                                 return (flags & Flags.FixedVariable) != 0;
2444                         }
2445                         set {
2446                                 flags = value ? flags | Flags.FixedVariable : flags & ~Flags.FixedVariable;
2447                         }
2448                 }
2449
2450                 bool INamedBlockVariable.IsParameter {
2451                         get {
2452                                 return false;
2453                         }
2454                 }
2455
2456                 public bool IsReadonly {
2457                         get {
2458                                 return (flags & Flags.ReadonlyMask) != 0;
2459                         }
2460                 }
2461
2462                 public Location Location {
2463                         get {
2464                                 return loc;
2465                         }
2466                 }
2467
2468                 public string Name {
2469                         get {
2470                                 return name;
2471                         }
2472                 }
2473
2474                 public TypeSpec Type {
2475                     get {
2476                                 return type;
2477                         }
2478                     set {
2479                                 type = value;
2480                         }
2481                 }
2482
2483                 #endregion
2484
2485                 public void CreateBuilder (EmitContext ec)
2486                 {
2487                         if ((flags & Flags.Used) == 0) {
2488                                 if (VariableInfo == null) {
2489                                         // Missing flow analysis or wrong variable flags
2490                                         throw new InternalErrorException ("VariableInfo is null and the variable `{0}' is not used", name);
2491                                 }
2492
2493                                 if (VariableInfo.IsEverAssigned)
2494                                         ec.Report.Warning (219, 3, Location, "The variable `{0}' is assigned but its value is never used", Name);
2495                                 else
2496                                         ec.Report.Warning (168, 3, Location, "The variable `{0}' is declared but never used", Name);
2497                         }
2498
2499                         if (HoistedVariant != null)
2500                                 return;
2501
2502                         if (builder != null) {
2503                                 if ((flags & Flags.CompilerGenerated) != 0)
2504                                         return;
2505
2506                                 // To avoid Used warning duplicates
2507                                 throw new InternalErrorException ("Already created variable `{0}'", name);
2508                         }
2509
2510                         //
2511                         // All fixed variabled are pinned, a slot has to be alocated
2512                         //
2513                         builder = ec.DeclareLocal (Type, IsFixed);
2514                         if ((flags & Flags.SymbolFileHidden) == 0)
2515                                 ec.DefineLocalVariable (name, builder);
2516                 }
2517
2518                 public static LocalVariable CreateCompilerGenerated (TypeSpec type, Block block, Location loc, bool writeToSymbolFile = false)
2519                 {
2520                         LocalVariable li = new LocalVariable (block, GetCompilerGeneratedName (block), Flags.CompilerGenerated | Flags.Used, loc);
2521                         if (!writeToSymbolFile)
2522                                 li.flags |= Flags.SymbolFileHidden;
2523                         
2524                         li.Type = type;
2525                         return li;
2526                 }
2527
2528                 public Expression CreateReferenceExpression (ResolveContext rc, Location loc)
2529                 {
2530                         if (IsConstant && const_value != null)
2531                                 return Constant.CreateConstantFromValue (Type, const_value.GetValue (), loc);
2532
2533                         return new LocalVariableReference (this, loc);
2534                 }
2535
2536                 public void Emit (EmitContext ec)
2537                 {
2538                         // TODO: Need something better for temporary variables
2539                         if ((flags & Flags.CompilerGenerated) != 0)
2540                                 CreateBuilder (ec);
2541
2542                         ec.Emit (OpCodes.Ldloc, builder);
2543                 }
2544
2545                 public void EmitAssign (EmitContext ec)
2546                 {
2547                         // TODO: Need something better for temporary variables
2548                         if ((flags & Flags.CompilerGenerated) != 0)
2549                                 CreateBuilder (ec);
2550
2551                         ec.Emit (OpCodes.Stloc, builder);
2552                 }
2553
2554                 public void EmitAddressOf (EmitContext ec)
2555                 {
2556                         // TODO: Need something better for temporary variables
2557                         if ((flags & Flags.CompilerGenerated) != 0)
2558                                 CreateBuilder (ec);
2559
2560                         ec.Emit (OpCodes.Ldloca, builder);
2561                 }
2562
2563                 public static string GetCompilerGeneratedName (Block block)
2564                 {
2565                         // HACK: Debugger depends on the name semantics
2566                         return "$locvar" + block.ParametersBlock.TemporaryLocalsCount++.ToString ("X");
2567                 }
2568
2569                 public string GetReadOnlyContext ()
2570                 {
2571                         switch (flags & Flags.ReadonlyMask) {
2572                         case Flags.FixedVariable:
2573                                 return "fixed variable";
2574                         case Flags.ForeachVariable:
2575                                 return "foreach iteration variable";
2576                         case Flags.UsingVariable:
2577                                 return "using variable";
2578                         }
2579
2580                         throw new InternalErrorException ("Variable is not readonly");
2581                 }
2582
2583                 public bool IsThisAssigned (FlowAnalysisContext fc, Block block)
2584                 {
2585                         if (VariableInfo == null)
2586                                 throw new Exception ();
2587
2588                         if (IsAssigned (fc))
2589                                 return true;
2590
2591                         return VariableInfo.IsFullyInitialized (fc, block.StartLocation);
2592                 }
2593
2594                 public bool IsAssigned (FlowAnalysisContext fc)
2595                 {
2596                         return fc.IsDefinitelyAssigned (VariableInfo);
2597                 }
2598
2599                 public void PrepareAssignmentAnalysis (BlockContext bc)
2600                 {
2601                         //
2602                         // No need to run assignment analysis for these guys
2603                         //
2604                         if ((flags & (Flags.Constant | Flags.ReadonlyMask | Flags.CompilerGenerated)) != 0)
2605                                 return;
2606
2607                         VariableInfo = VariableInfo.Create (bc, this);
2608                 }
2609
2610                 //
2611                 // Mark the variables as referenced in the user code
2612                 //
2613                 public void SetIsUsed ()
2614                 {
2615                         flags |= Flags.Used;
2616                 }
2617
2618                 public void SetHasAddressTaken ()
2619                 {
2620                         flags |= (Flags.AddressTaken | Flags.Used);
2621                 }
2622
2623                 public override string ToString ()
2624                 {
2625                         return string.Format ("LocalInfo ({0},{1},{2},{3})", name, type, VariableInfo, Location);
2626                 }
2627         }
2628
2629         /// <summary>
2630         ///   Block represents a C# block.
2631         /// </summary>
2632         ///
2633         /// <remarks>
2634         ///   This class is used in a number of places: either to represent
2635         ///   explicit blocks that the programmer places or implicit blocks.
2636         ///
2637         ///   Implicit blocks are used as labels or to introduce variable
2638         ///   declarations.
2639         ///
2640         ///   Top-level blocks derive from Block, and they are called ToplevelBlock
2641         ///   they contain extra information that is not necessary on normal blocks.
2642         /// </remarks>
2643         public class Block : Statement {
2644                 [Flags]
2645                 public enum Flags
2646                 {
2647                         Unchecked = 1,
2648                         ReachableEnd = 8,
2649                         Unsafe = 16,
2650                         HasCapturedVariable = 64,
2651                         HasCapturedThis = 1 << 7,
2652                         IsExpressionTree = 1 << 8,
2653                         CompilerGenerated = 1 << 9,
2654                         HasAsyncModifier = 1 << 10,
2655                         Resolved = 1 << 11,
2656                         YieldBlock = 1 << 12,
2657                         AwaitBlock = 1 << 13,
2658                         FinallyBlock = 1 << 14,
2659                         CatchBlock = 1 << 15,
2660                         HasReferenceToStoreyForInstanceLambdas = 1 << 16,
2661                         Iterator = 1 << 20,
2662                         NoFlowAnalysis = 1 << 21,
2663                         InitializationEmitted = 1 << 22
2664                 }
2665
2666                 public Block Parent;
2667                 public Location StartLocation;
2668                 public Location EndLocation;
2669
2670                 public ExplicitBlock Explicit;
2671                 public ParametersBlock ParametersBlock;
2672
2673                 protected Flags flags;
2674
2675                 //
2676                 // The statements in this block
2677                 //
2678                 protected List<Statement> statements;
2679
2680                 protected List<Statement> scope_initializers;
2681
2682                 int? resolving_init_idx;
2683
2684                 Block original;
2685
2686 #if DEBUG
2687                 static int id;
2688                 public int ID = id++;
2689
2690                 static int clone_id_counter;
2691                 int clone_id;
2692 #endif
2693
2694 //              int assignable_slots;
2695
2696                 public Block (Block parent, Location start, Location end)
2697                         : this (parent, 0, start, end)
2698                 {
2699                 }
2700
2701                 public Block (Block parent, Flags flags, Location start, Location end)
2702                 {
2703                         if (parent != null) {
2704                                 // the appropriate constructors will fixup these fields
2705                                 ParametersBlock = parent.ParametersBlock;
2706                                 Explicit = parent.Explicit;
2707                         }
2708                         
2709                         this.Parent = parent;
2710                         this.flags = flags;
2711                         this.StartLocation = start;
2712                         this.EndLocation = end;
2713                         this.loc = start;
2714                         statements = new List<Statement> (4);
2715
2716                         this.original = this;
2717                 }
2718
2719                 #region Properties
2720
2721                 public Block Original {
2722                         get {
2723                                 return original;
2724                         }
2725                         protected set {
2726                                 original = value;
2727                         }
2728                 }
2729
2730                 public bool IsCompilerGenerated {
2731                         get { return (flags & Flags.CompilerGenerated) != 0; }
2732                         set { flags = value ? flags | Flags.CompilerGenerated : flags & ~Flags.CompilerGenerated; }
2733                 }
2734
2735
2736                 public bool IsCatchBlock {
2737                         get {
2738                                 return (flags & Flags.CatchBlock) != 0;
2739                         }
2740                 }
2741
2742                 public bool IsFinallyBlock {
2743                         get {
2744                                 return (flags & Flags.FinallyBlock) != 0;
2745                         }
2746                 }
2747
2748                 public bool Unchecked {
2749                         get { return (flags & Flags.Unchecked) != 0; }
2750                         set { flags = value ? flags | Flags.Unchecked : flags & ~Flags.Unchecked; }
2751                 }
2752
2753                 public bool Unsafe {
2754                         get { return (flags & Flags.Unsafe) != 0; }
2755                         set { flags |= Flags.Unsafe; }
2756                 }
2757
2758                 public List<Statement> Statements {
2759                         get { return statements; }
2760                 }
2761
2762                 #endregion
2763
2764                 public void SetEndLocation (Location loc)
2765                 {
2766                         EndLocation = loc;
2767                 }
2768
2769                 public void AddLabel (LabeledStatement target)
2770                 {
2771                         ParametersBlock.TopBlock.AddLabel (target.Name, target);
2772                 }
2773
2774                 public void AddLocalName (LocalVariable li)
2775                 {
2776                         AddLocalName (li.Name, li);
2777                 }
2778
2779                 public void AddLocalName (string name, INamedBlockVariable li)
2780                 {
2781                         ParametersBlock.TopBlock.AddLocalName (name, li, false);
2782                 }
2783
2784                 public virtual void Error_AlreadyDeclared (string name, INamedBlockVariable variable, string reason)
2785                 {
2786                         if (reason == null) {
2787                                 Error_AlreadyDeclared (name, variable);
2788                                 return;
2789                         }
2790
2791                         ParametersBlock.TopBlock.Report.Error (136, variable.Location,
2792                                 "A local variable named `{0}' cannot be declared in this scope because it would give a different meaning " +
2793                                 "to `{0}', which is already used in a `{1}' scope to denote something else",
2794                                 name, reason);
2795                 }
2796
2797                 public virtual void Error_AlreadyDeclared (string name, INamedBlockVariable variable)
2798                 {
2799                         var pi = variable as ParametersBlock.ParameterInfo;
2800                         if (pi != null) {
2801                                 pi.Parameter.Error_DuplicateName (ParametersBlock.TopBlock.Report);
2802                         } else {
2803                                 ParametersBlock.TopBlock.Report.Error (128, variable.Location,
2804                                         "A local variable named `{0}' is already defined in this scope", name);
2805                         }
2806                 }
2807                                         
2808                 public virtual void Error_AlreadyDeclaredTypeParameter (string name, Location loc)
2809                 {
2810                         ParametersBlock.TopBlock.Report.Error (412, loc,
2811                                 "The type parameter name `{0}' is the same as local variable or parameter name",
2812                                 name);
2813                 }
2814
2815                 //
2816                 // It should be used by expressions which require to
2817                 // register a statement during resolve process.
2818                 //
2819                 public void AddScopeStatement (Statement s)
2820                 {
2821                         if (scope_initializers == null)
2822                                 scope_initializers = new List<Statement> ();
2823
2824                         //
2825                         // Simple recursive helper, when resolve scope initializer another
2826                         // new scope initializer can be added, this ensures it's initialized
2827                         // before existing one. For now this can happen with expression trees
2828                         // in base ctor initializer only
2829                         //
2830                         if (resolving_init_idx.HasValue) {
2831                                 scope_initializers.Insert (resolving_init_idx.Value, s);
2832                                 ++resolving_init_idx;
2833                         } else {
2834                                 scope_initializers.Add (s);
2835                         }
2836                 }
2837
2838                 public void InsertStatement (int index, Statement s)
2839                 {
2840                         statements.Insert (index, s);
2841                 }
2842                 
2843                 public void AddStatement (Statement s)
2844                 {
2845                         statements.Add (s);
2846                 }
2847
2848                 public LabeledStatement LookupLabel (string name)
2849                 {
2850                         return ParametersBlock.GetLabel (name, this);
2851                 }
2852
2853                 public override Reachability MarkReachable (Reachability rc)
2854                 {
2855                         if (rc.IsUnreachable)
2856                                 return rc;
2857
2858                         MarkReachableScope (rc);
2859
2860                         foreach (var s in statements) {
2861                                 rc = s.MarkReachable (rc);
2862                                 if (rc.IsUnreachable) {
2863                                         if ((flags & Flags.ReachableEnd) != 0)
2864                                                 return new Reachability ();
2865
2866                                         return rc;
2867                                 }
2868                         }
2869
2870                         flags |= Flags.ReachableEnd;
2871
2872                         return rc;
2873                 }
2874
2875                 public void MarkReachableScope (Reachability rc)
2876                 {
2877                         base.MarkReachable (rc);
2878
2879                         if (scope_initializers != null) {
2880                                 foreach (var si in scope_initializers)
2881                                         si.MarkReachable (rc);
2882                         }
2883                 }
2884
2885                 public override bool Resolve (BlockContext bc)
2886                 {
2887                         if ((flags & Flags.Resolved) != 0)
2888                                 return true;
2889
2890                         Block prev_block = bc.CurrentBlock;
2891                         bc.CurrentBlock = this;
2892
2893                         //
2894                         // Compiler generated scope statements
2895                         //
2896                         if (scope_initializers != null) {
2897                                 for (resolving_init_idx = 0; resolving_init_idx < scope_initializers.Count; ++resolving_init_idx) {
2898                                         scope_initializers[resolving_init_idx.Value].Resolve (bc);
2899                                 }
2900
2901                                 resolving_init_idx = null;
2902                         }
2903
2904                         bool ok = true;
2905                         int statement_count = statements.Count;
2906                         for (int ix = 0; ix < statement_count; ix++){
2907                                 Statement s = statements [ix];
2908
2909                                 if (!s.Resolve (bc)) {
2910                                         ok = false;
2911                                         statements [ix] = new EmptyStatement (s.loc);
2912                                         continue;
2913                                 }
2914                         }
2915
2916                         bc.CurrentBlock = prev_block;
2917
2918                         flags |= Flags.Resolved;
2919                         return ok;
2920                 }
2921
2922                 protected override void DoEmit (EmitContext ec)
2923                 {
2924                         for (int ix = 0; ix < statements.Count; ix++){
2925                                 statements [ix].Emit (ec);
2926                         }
2927                 }
2928
2929                 public override void Emit (EmitContext ec)
2930                 {
2931                         if (scope_initializers != null)
2932                                 EmitScopeInitializers (ec);
2933
2934                         DoEmit (ec);
2935                 }
2936
2937                 protected void EmitScopeInitializers (EmitContext ec)
2938                 {
2939                         foreach (Statement s in scope_initializers)
2940                                 s.Emit (ec);
2941                 }
2942
2943                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
2944                 {
2945                         if (scope_initializers != null) {
2946                                 foreach (var si in scope_initializers)
2947                                         si.FlowAnalysis (fc);
2948                         }
2949
2950                         return DoFlowAnalysis (fc, 0);  
2951                 }
2952
2953                 bool DoFlowAnalysis (FlowAnalysisContext fc, int startIndex)
2954                 {
2955                         bool end_unreachable = !reachable;
2956                         bool goto_flow_analysis = startIndex != 0;
2957                         for (; startIndex < statements.Count; ++startIndex) {
2958                                 var s = statements[startIndex];
2959
2960                                 end_unreachable = s.FlowAnalysis (fc);
2961                                 if (s.IsUnreachable) {
2962                                         statements [startIndex] = RewriteUnreachableStatement (s);
2963                                         continue;
2964                                 }
2965
2966                                 //
2967                                 // Statement end reachability is needed mostly due to goto support. Consider
2968                                 //
2969                                 // if (cond) {
2970                                 //    goto X;
2971                                 // } else {
2972                                 //    goto Y;
2973                                 // }
2974                                 // X:
2975                                 //
2976                                 // X label is reachable only via goto not as another statement after if. We need
2977                                 // this for flow-analysis only to carry variable info correctly.
2978                                 //
2979                                 if (end_unreachable) {
2980                                         bool after_goto_case = goto_flow_analysis && s is GotoCase;
2981
2982                                         var f = s as TryFinally;
2983                                         if (f != null && !f.FinallyBlock.HasReachableClosingBrace) {
2984                                                 //
2985                                                 // Special case for try-finally with unreachable code after
2986                                                 // finally block. Try block has to include leave opcode but there is
2987                                                 // no label to leave to after unreachable finally block closing
2988                                                 // brace. This sentinel ensures there is always IL instruction to
2989                                                 // leave to even if we know it'll never be reached.
2990                                                 //
2991                                                 statements.Insert (startIndex + 1, new SentinelStatement ());
2992                                         } else {
2993                                                 for (++startIndex; startIndex < statements.Count; ++startIndex) {
2994                                                         s = statements [startIndex];
2995                                                         if (s is SwitchLabel) {
2996                                                                 if (!after_goto_case)
2997                                                                         s.FlowAnalysis (fc);
2998
2999                                                                 break;
3000                                                         }
3001
3002                                                         if (s.IsUnreachable) {
3003                                                                 s.FlowAnalysis (fc);
3004                                                                 statements [startIndex] = RewriteUnreachableStatement (s);
3005                                                         }
3006                                                 }
3007                                         }
3008
3009                                         //
3010                                         // Idea is to stop after goto case because goto case will always have at least same
3011                                         // variable assigned as switch case label. This saves a lot for complex goto case tests
3012                                         //
3013                                         if (after_goto_case)
3014                                                 break;
3015
3016                                         continue;
3017                                 }
3018
3019                                 var lb = s as LabeledStatement;
3020                                 if (lb != null && fc.AddReachedLabel (lb))
3021                                         break;
3022                         }
3023
3024                         //
3025                         // The condition should be true unless there is forward jumping goto
3026                         // 
3027                         // if (this is ExplicitBlock && end_unreachable != Explicit.HasReachableClosingBrace)
3028                         //      Debug.Fail ();
3029
3030                         return !Explicit.HasReachableClosingBrace;
3031                 }
3032
3033                 static Statement RewriteUnreachableStatement (Statement s)
3034                 {
3035                         // LAMESPEC: It's not clear whether declararion statement should be part of reachability
3036                         // analysis. Even csc report unreachable warning for it but it's actually used hence
3037                         // we try to emulate this behaviour
3038                         //
3039                         // Consider:
3040                         //      goto L;
3041                         //      int v;
3042                         // L:
3043                         //      v = 1;
3044
3045                         if (s is BlockVariable || s is EmptyStatement || s is SentinelStatement)
3046                                 return s;
3047
3048                         return new EmptyStatement (s.loc);
3049                 }
3050
3051                 public void ScanGotoJump (Statement label)
3052                 {
3053                         int i;
3054                         for (i = 0; i < statements.Count; ++i) {
3055                                 if (statements[i] == label)
3056                                         break;
3057                         }
3058
3059                         var rc = new Reachability ();
3060                         for (++i; i < statements.Count; ++i) {
3061                                 var s = statements[i];
3062                                 rc = s.MarkReachable (rc);
3063                                 if (rc.IsUnreachable)
3064                                         return;
3065                         }
3066
3067                         flags |= Flags.ReachableEnd;
3068                 }
3069
3070                 public void ScanGotoJump (Statement label, FlowAnalysisContext fc)
3071                 {
3072                         int i;
3073                         for (i = 0; i < statements.Count; ++i) {
3074                                 if (statements[i] == label)
3075                                         break;
3076                         }
3077
3078                         DoFlowAnalysis (fc, ++i);
3079                 }
3080
3081 #if DEBUG
3082                 public override string ToString ()
3083                 {
3084                         return String.Format ("{0}: ID={1} Clone={2} Location={3}", GetType (), ID, clone_id != 0, StartLocation);
3085                 }
3086 #endif
3087
3088                 protected override void CloneTo (CloneContext clonectx, Statement t)
3089                 {
3090                         Block target = (Block) t;
3091 #if DEBUG
3092                         target.clone_id = ++clone_id_counter;
3093 #endif
3094
3095                         clonectx.AddBlockMap (this, target);
3096                         if (original != this)
3097                                 clonectx.AddBlockMap (original, target);
3098
3099                         target.ParametersBlock = (ParametersBlock) (ParametersBlock == this ? target : clonectx.RemapBlockCopy (ParametersBlock));
3100                         target.Explicit = (ExplicitBlock) (Explicit == this ? target : clonectx.LookupBlock (Explicit));
3101
3102                         if (Parent != null)
3103                                 target.Parent = clonectx.RemapBlockCopy (Parent);
3104
3105                         target.statements = new List<Statement> (statements.Count);
3106                         foreach (Statement s in statements)
3107                                 target.statements.Add (s.Clone (clonectx));
3108                 }
3109
3110                 public override object Accept (StructuralVisitor visitor)
3111                 {
3112                         return visitor.Visit (this);
3113                 }
3114         }
3115
3116         public class ExplicitBlock : Block
3117         {
3118                 protected AnonymousMethodStorey am_storey;
3119                 int debug_scope_index;
3120
3121                 public ExplicitBlock (Block parent, Location start, Location end)
3122                         : this (parent, (Flags) 0, start, end)
3123                 {
3124                 }
3125
3126                 public ExplicitBlock (Block parent, Flags flags, Location start, Location end)
3127                         : base (parent, flags, start, end)
3128                 {
3129                         this.Explicit = this;
3130                 }
3131
3132                 #region Properties
3133
3134                 public AnonymousMethodStorey AnonymousMethodStorey {
3135                         get {
3136                                 return am_storey;
3137                         }
3138                 }
3139
3140                 public bool HasAwait {
3141                         get {
3142                                 return (flags & Flags.AwaitBlock) != 0;
3143                         }
3144                 }
3145
3146                 public bool HasCapturedThis {
3147                         set {
3148                                 flags = value ? flags | Flags.HasCapturedThis : flags & ~Flags.HasCapturedThis;
3149                         }
3150                         get {
3151                                 return (flags & Flags.HasCapturedThis) != 0;
3152                         }
3153                 }
3154
3155                 //
3156                 // Used to indicate that the block has reference to parent
3157                 // block and cannot be made static when defining anonymous method
3158                 //
3159                 public bool HasCapturedVariable {
3160                         set {
3161                                 flags = value ? flags | Flags.HasCapturedVariable : flags & ~Flags.HasCapturedVariable;
3162                         }
3163                         get {
3164                                 return (flags & Flags.HasCapturedVariable) != 0;
3165                         }
3166                 }
3167
3168                 public bool HasReachableClosingBrace {
3169                     get {
3170                         return (flags & Flags.ReachableEnd) != 0;
3171                     }
3172                         set {
3173                                 flags = value ? flags | Flags.ReachableEnd : flags & ~Flags.ReachableEnd;
3174                         }
3175                 }
3176
3177                 public bool HasYield {
3178                         get {
3179                                 return (flags & Flags.YieldBlock) != 0;
3180                         }
3181                 }
3182
3183                 #endregion
3184
3185                 //
3186                 // Creates anonymous method storey in current block
3187                 //
3188                 public AnonymousMethodStorey CreateAnonymousMethodStorey (ResolveContext ec)
3189                 {
3190                         //
3191                         // Return same story for iterator and async blocks unless we are
3192                         // in nested anonymous method
3193                         //
3194                         if (ec.CurrentAnonymousMethod is StateMachineInitializer && ParametersBlock.Original == ec.CurrentAnonymousMethod.Block.Original)
3195                                 return ec.CurrentAnonymousMethod.Storey;
3196
3197                         if (am_storey == null) {
3198                                 MemberBase mc = ec.MemberContext as MemberBase;
3199
3200                                 //
3201                                 // Creates anonymous method storey for this block
3202                                 //
3203                                 am_storey = new AnonymousMethodStorey (this, ec.CurrentMemberDefinition.Parent.PartialContainer, mc, ec.CurrentTypeParameters, "AnonStorey", MemberKind.Class);
3204                         }
3205
3206                         return am_storey;
3207                 }
3208
3209                 public void EmitScopeInitialization (EmitContext ec)
3210                 {
3211                         if ((flags & Flags.InitializationEmitted) != 0)
3212                                 return;
3213
3214                         if (am_storey != null) {
3215                                 DefineStoreyContainer (ec, am_storey);
3216                                 am_storey.EmitStoreyInstantiation (ec, this);
3217                         }
3218
3219                         if (scope_initializers != null)
3220                                 EmitScopeInitializers (ec);
3221
3222                         flags |= Flags.InitializationEmitted;
3223                 }
3224
3225                 public override void Emit (EmitContext ec)
3226                 {
3227                         if (Parent != null) {
3228                                 // TODO: It's needed only when scope has variable (normal or lifted)
3229                                 ec.BeginScope (GetDebugSymbolScopeIndex ());
3230                         }
3231
3232                         EmitScopeInitialization (ec);
3233
3234                         if (ec.EmitAccurateDebugInfo && !IsCompilerGenerated && ec.Mark (StartLocation)) {
3235                                 ec.Emit (OpCodes.Nop);
3236                         }
3237
3238                         DoEmit (ec);
3239
3240                         if (Parent != null)
3241                                 ec.EndScope ();
3242
3243                         if (ec.EmitAccurateDebugInfo && HasReachableClosingBrace && !(this is ParametersBlock) &&
3244                                 !IsCompilerGenerated && ec.Mark (EndLocation)) {
3245                                 ec.Emit (OpCodes.Nop);
3246                         }
3247                 }
3248
3249                 protected void DefineStoreyContainer (EmitContext ec, AnonymousMethodStorey storey)
3250                 {
3251                         if (ec.CurrentAnonymousMethod != null && ec.CurrentAnonymousMethod.Storey != null) {
3252                                 storey.SetNestedStoryParent (ec.CurrentAnonymousMethod.Storey);
3253                                 storey.Mutator = ec.CurrentAnonymousMethod.Storey.Mutator;
3254                         }
3255
3256                         //
3257                         // Creates anonymous method storey
3258                         //
3259                         storey.CreateContainer ();
3260                         storey.DefineContainer ();
3261
3262                         if (Original.Explicit.HasCapturedThis && Original.ParametersBlock.TopBlock.ThisReferencesFromChildrenBlock != null) {
3263
3264                                 //
3265                                 // Only first storey in path will hold this reference. All children blocks will
3266                                 // reference it indirectly using $ref field
3267                                 //
3268                                 for (Block b = Original.Explicit; b != null; b = b.Parent) {
3269                                         if (b.Parent != null) {
3270                                                 var s = b.Parent.Explicit.AnonymousMethodStorey;
3271                                                 if (s != null) {
3272                                                         storey.HoistedThis = s.HoistedThis;
3273                                                         break;
3274                                                 }
3275                                         }
3276
3277                                         if (b.Explicit == b.Explicit.ParametersBlock && b.Explicit.ParametersBlock.StateMachine != null) {
3278                                                 if (storey.HoistedThis == null)
3279                                                         storey.HoistedThis = b.Explicit.ParametersBlock.StateMachine.HoistedThis;
3280
3281                                                 if (storey.HoistedThis != null)
3282                                                         break;
3283                                         }
3284                                 }
3285
3286                                 //
3287                                 // We are the first storey on path and 'this' has to be hoisted
3288                                 //
3289                                 if (storey.HoistedThis == null || !(storey.Parent is HoistedStoreyClass)) {
3290                                         foreach (ExplicitBlock ref_block in Original.ParametersBlock.TopBlock.ThisReferencesFromChildrenBlock) {
3291                                                 //
3292                                                 // ThisReferencesFromChildrenBlock holds all reference even if they
3293                                                 // are not on this path. It saves some memory otherwise it'd have to
3294                                                 // be in every explicit block. We run this check to see if the reference
3295                                                 // is valid for this storey
3296                                                 //
3297                                                 Block block_on_path = ref_block;
3298                                                 for (; block_on_path != null && block_on_path != Original; block_on_path = block_on_path.Parent);
3299
3300                                                 if (block_on_path == null)
3301                                                         continue;
3302
3303                                                 if (storey.HoistedThis == null) {
3304                                                         storey.AddCapturedThisField (ec, null);
3305                                                 }
3306
3307                                                 for (ExplicitBlock b = ref_block; b.AnonymousMethodStorey != storey; b = b.Parent.Explicit) {
3308                                                         ParametersBlock pb;
3309                                                         AnonymousMethodStorey b_storey = b.AnonymousMethodStorey;
3310
3311                                                         if (b_storey != null) {
3312                                                                 //
3313                                                                 // Don't add storey cross reference for `this' when the storey ends up not
3314                                                                 // beeing attached to any parent
3315                                                                 //
3316                                                                 if (b.ParametersBlock.StateMachine == null) {
3317                                                                         AnonymousMethodStorey s = null;
3318                                                                         for (Block ab = b.AnonymousMethodStorey.OriginalSourceBlock.Parent; ab != null; ab = ab.Parent) {
3319                                                                                 s = ab.Explicit.AnonymousMethodStorey;
3320                                                                                 if (s != null)
3321                                                                                         break;
3322                                                                         }
3323
3324                                                                         // Needs to be in sync with AnonymousMethodBody::DoCreateMethodHost
3325                                                                         if (s == null) {
3326                                                                                 var parent = storey == null || storey.Kind == MemberKind.Struct ? null : storey;
3327                                                                                 b.AnonymousMethodStorey.AddCapturedThisField (ec, parent);
3328                                                                                 break;
3329                                                                         }
3330
3331                                                                 }
3332
3333                                                                 //
3334                                                                 // Stop propagation inside same top block
3335                                                                 //
3336                                                                 if (b.ParametersBlock == ParametersBlock.Original) {
3337                                                                         b_storey.AddParentStoreyReference (ec, storey);
3338 //                                                                      b_storey.HoistedThis = storey.HoistedThis;
3339                                                                         break;
3340                                                                 }
3341
3342                                                                 b = pb = b.ParametersBlock;
3343                                                         } else {
3344                                                                 pb = b as ParametersBlock;
3345                                                         }
3346
3347                                                         if (pb != null && pb.StateMachine != null) {
3348                                                                 if (pb.StateMachine == storey)
3349                                                                         break;
3350
3351                                                                 //
3352                                                                 // If we are state machine with no parent. We can hook into parent without additional
3353                                                                 // reference and capture this directly
3354                                                                 //
3355                                                                 ExplicitBlock parent_storey_block = pb;
3356                                                                 while (parent_storey_block.Parent != null) {
3357                                                                         parent_storey_block = parent_storey_block.Parent.Explicit;
3358                                                                         if (parent_storey_block.AnonymousMethodStorey != null) {
3359                                                                                 break;
3360                                                                         }
3361                                                                 }
3362
3363                                                                 if (parent_storey_block.AnonymousMethodStorey == null) {
3364                                                                         if (pb.StateMachine.HoistedThis == null) {
3365                                                                                 pb.StateMachine.AddCapturedThisField (ec, null);
3366                                                                                 b.HasCapturedThis = true;
3367                                                                         }
3368
3369                                                                         continue;
3370                                                                 }
3371
3372                                                                 var parent_this_block = pb;
3373                                                                 while (parent_this_block.Parent != null) {
3374                                                                         parent_this_block = parent_this_block.Parent.ParametersBlock;
3375                                                                         if (parent_this_block.StateMachine != null && parent_this_block.StateMachine.HoistedThis != null) {
3376                                                                                 break;
3377                                                                         }
3378                                                                 }
3379
3380                                                                 //
3381                                                                 // Add reference to closest storey which holds captured this
3382                                                                 //
3383                                                                 pb.StateMachine.AddParentStoreyReference (ec, parent_this_block.StateMachine ?? storey);
3384                                                         }
3385
3386                                                         //
3387                                                         // Add parent storey reference only when this is not captured directly
3388                                                         //
3389                                                         if (b_storey != null) {
3390                                                                 b_storey.AddParentStoreyReference (ec, storey);
3391                                                                 b_storey.HoistedThis = storey.HoistedThis;
3392                                                         }
3393                                                 }
3394                                         }
3395                                 }
3396                         }
3397
3398                         var ref_blocks = storey.ReferencesFromChildrenBlock;
3399                         if (ref_blocks != null) {
3400                                 foreach (ExplicitBlock ref_block in ref_blocks) {
3401                                         for (ExplicitBlock b = ref_block; b.AnonymousMethodStorey != storey; b = b.Parent.Explicit) {
3402                                                 if (b.AnonymousMethodStorey != null) {
3403                                                         b.AnonymousMethodStorey.AddParentStoreyReference (ec, storey);
3404
3405                                                         //
3406                                                         // Stop propagation inside same top block
3407                                                         //
3408                                                         if (b.ParametersBlock == ParametersBlock.Original)
3409                                                                 break;
3410
3411                                                         b = b.ParametersBlock;
3412                                                 }
3413
3414                                                 var pb = b as ParametersBlock;
3415                                                 if (pb != null && pb.StateMachine != null) {
3416                                                         if (pb.StateMachine == storey)
3417                                                                 break;
3418
3419                                                         pb.StateMachine.AddParentStoreyReference (ec, storey);
3420                                                 }
3421
3422                                                 b.HasCapturedVariable = true;
3423                                         }
3424                                 }
3425                         }
3426
3427                         storey.Define ();
3428                         storey.PrepareEmit ();
3429                         storey.Parent.PartialContainer.AddCompilerGeneratedClass (storey);
3430                 }
3431
3432                 public int GetDebugSymbolScopeIndex ()
3433                 {
3434                         if (debug_scope_index == 0)
3435                                 debug_scope_index = ++ParametersBlock.debug_scope_index;
3436
3437                         return debug_scope_index;
3438                 }
3439
3440                 public void RegisterAsyncAwait ()
3441                 {
3442                         var block = this;
3443                         while ((block.flags & Flags.AwaitBlock) == 0) {
3444                                 block.flags |= Flags.AwaitBlock;
3445
3446                                 if (block is ParametersBlock)
3447                                         return;
3448
3449                                 block = block.Parent.Explicit;
3450                         }
3451                 }
3452
3453                 public void RegisterIteratorYield ()
3454                 {
3455                         ParametersBlock.TopBlock.IsIterator = true;
3456
3457                         var block = this;
3458                         while ((block.flags & Flags.YieldBlock) == 0) {
3459                                 block.flags |= Flags.YieldBlock;
3460
3461                                 if (block.Parent == null)
3462                                         return;
3463
3464                                 block = block.Parent.Explicit;
3465                         }
3466                 }
3467
3468                 public void SetCatchBlock ()
3469                 {
3470                         flags |= Flags.CatchBlock;
3471                 }
3472
3473                 public void SetFinallyBlock ()
3474                 {
3475                         flags |= Flags.FinallyBlock;
3476                 }
3477
3478                 public void WrapIntoDestructor (TryFinally tf, ExplicitBlock tryBlock)
3479                 {
3480                         tryBlock.statements = statements;
3481                         statements = new List<Statement> (1);
3482                         statements.Add (tf);
3483                 }
3484         }
3485
3486         //
3487         // ParametersBlock was introduced to support anonymous methods
3488         // and lambda expressions
3489         // 
3490         public class ParametersBlock : ExplicitBlock
3491         {
3492                 public class ParameterInfo : INamedBlockVariable
3493                 {
3494                         readonly ParametersBlock block;
3495                         readonly int index;
3496                         public VariableInfo VariableInfo;
3497                         bool is_locked;
3498
3499                         public ParameterInfo (ParametersBlock block, int index)
3500                         {
3501                                 this.block = block;
3502                                 this.index = index;
3503                         }
3504
3505                         #region Properties
3506
3507                         public ParametersBlock Block {
3508                                 get {
3509                                         return block;
3510                                 }
3511                         }
3512
3513                         Block INamedBlockVariable.Block {
3514                                 get {
3515                                         return block;
3516                                 }
3517                         }
3518
3519                         public bool IsDeclared {
3520                                 get {
3521                                         return true;
3522                                 }
3523                         }
3524
3525                         public bool IsParameter {
3526                                 get {
3527                                         return true;
3528                                 }
3529                         }
3530
3531                         public bool IsLocked {
3532                                 get {
3533                                         return is_locked;
3534                                 }
3535                                 set {
3536                                         is_locked = value;
3537                                 }
3538                         }
3539
3540                         public Location Location {
3541                                 get {
3542                                         return Parameter.Location;
3543                                 }
3544                         }
3545
3546                         public Parameter Parameter {
3547                                 get {
3548                                         return block.Parameters [index];
3549                                 }
3550                         }
3551
3552                         public TypeSpec ParameterType {
3553                                 get {
3554                                         return Parameter.Type;
3555                                 }
3556                         }
3557
3558                         #endregion
3559
3560                         public Expression CreateReferenceExpression (ResolveContext rc, Location loc)
3561                         {
3562                                 return new ParameterReference (this, loc);
3563                         }
3564                 }
3565
3566                 // 
3567                 // Block is converted into an expression
3568                 //
3569                 sealed class BlockScopeExpression : Expression
3570                 {
3571                         Expression child;
3572                         readonly ParametersBlock block;
3573
3574                         public BlockScopeExpression (Expression child, ParametersBlock block)
3575                         {
3576                                 this.child = child;
3577                                 this.block = block;
3578                         }
3579
3580                         public override bool ContainsEmitWithAwait ()
3581                         {
3582                                 return child.ContainsEmitWithAwait ();
3583                         }
3584
3585                         public override Expression CreateExpressionTree (ResolveContext ec)
3586                         {
3587                                 throw new NotSupportedException ();
3588                         }
3589
3590                         protected override Expression DoResolve (ResolveContext ec)
3591                         {
3592                                 if (child == null)
3593                                         return null;
3594
3595                                 child = child.Resolve (ec);
3596                                 if (child == null)
3597                                         return null;
3598
3599                                 eclass = child.eclass;
3600                                 type = child.Type;
3601                                 return this;
3602                         }
3603
3604                         public override void Emit (EmitContext ec)
3605                         {
3606                                 block.EmitScopeInitializers (ec);
3607                                 child.Emit (ec);
3608                         }
3609                 }
3610
3611                 protected ParametersCompiled parameters;
3612                 protected ParameterInfo[] parameter_info;
3613                 protected bool resolved;
3614                 protected ToplevelBlock top_block;
3615                 protected StateMachine state_machine;
3616                 protected Dictionary<string, object> labels;
3617
3618                 public ParametersBlock (Block parent, ParametersCompiled parameters, Location start, Flags flags = 0)
3619                         : base (parent, 0, start, start)
3620                 {
3621                         if (parameters == null)
3622                                 throw new ArgumentNullException ("parameters");
3623
3624                         this.parameters = parameters;
3625                         ParametersBlock = this;
3626
3627                         this.flags |= flags | (parent.ParametersBlock.flags & (Flags.YieldBlock | Flags.AwaitBlock));
3628
3629                         this.top_block = parent.ParametersBlock.top_block;
3630                         ProcessParameters ();
3631                 }
3632
3633                 protected ParametersBlock (ParametersCompiled parameters, Location start)
3634                         : base (null, 0, start, start)
3635                 {
3636                         if (parameters == null)
3637                                 throw new ArgumentNullException ("parameters");
3638
3639                         this.parameters = parameters;
3640                         ParametersBlock = this;
3641                 }
3642
3643                 //
3644                 // It's supposed to be used by method body implementation of anonymous methods
3645                 //
3646                 protected ParametersBlock (ParametersBlock source, ParametersCompiled parameters)
3647                         : base (null, 0, source.StartLocation, source.EndLocation)
3648                 {
3649                         this.parameters = parameters;
3650                         this.statements = source.statements;
3651                         this.scope_initializers = source.scope_initializers;
3652
3653                         this.resolved = true;
3654                         this.reachable = source.reachable;
3655                         this.am_storey = source.am_storey;
3656                         this.state_machine = source.state_machine;
3657                         this.flags = source.flags & Flags.ReachableEnd;
3658
3659                         ParametersBlock = this;
3660
3661                         //
3662                         // Overwrite original for comparison purposes when linking cross references
3663                         // between anonymous methods
3664                         //
3665                         Original = source.Original;
3666                 }
3667
3668                 #region Properties
3669
3670                 public bool HasReferenceToStoreyForInstanceLambdas {
3671                         get {
3672                                 return (flags & Flags.HasReferenceToStoreyForInstanceLambdas) != 0;
3673                         }
3674                         set {
3675                                 flags = value ? flags | Flags.HasReferenceToStoreyForInstanceLambdas : flags & ~Flags.HasReferenceToStoreyForInstanceLambdas;
3676                         }
3677                 }
3678
3679                 public bool IsAsync {
3680                         get {
3681                                 return (flags & Flags.HasAsyncModifier) != 0;
3682                         }
3683                         set {
3684                                 flags = value ? flags | Flags.HasAsyncModifier : flags & ~Flags.HasAsyncModifier;
3685                         }
3686                 }
3687
3688                 //
3689                 // Block has been converted to expression tree
3690                 //
3691                 public bool IsExpressionTree {
3692                         get {
3693                                 return (flags & Flags.IsExpressionTree) != 0;
3694                         }
3695                 }
3696
3697                 //
3698                 // The parameters for the block.
3699                 //
3700                 public ParametersCompiled Parameters {
3701                         get {
3702                                 return parameters;
3703                         }
3704                 }
3705
3706                 public StateMachine StateMachine {
3707                         get {
3708                                 return state_machine;
3709                         }
3710                 }
3711
3712                 public ToplevelBlock TopBlock {
3713                         get {
3714                                 return top_block;
3715                         }
3716                         set {
3717                                 top_block = value;
3718                         }
3719                 }
3720
3721                 public bool Resolved {
3722                         get {
3723                                 return (flags & Flags.Resolved) != 0;
3724                         }
3725                 }
3726
3727                 public int TemporaryLocalsCount { get; set; }
3728
3729                 #endregion
3730
3731                 //
3732                 // Checks whether all `out' parameters have been assigned.
3733                 //
3734                 public void CheckControlExit (FlowAnalysisContext fc)
3735                 {
3736                         CheckControlExit (fc, fc.DefiniteAssignment);
3737                 }
3738
3739                 public virtual void CheckControlExit (FlowAnalysisContext fc, DefiniteAssignmentBitSet dat)
3740                 {
3741                         if (parameter_info == null)
3742                                 return;
3743
3744                         foreach (var p in parameter_info) {
3745                                 if (p.VariableInfo == null)
3746                                         continue;
3747
3748                                 if (p.VariableInfo.IsAssigned (dat))
3749                                         continue;
3750
3751                                 fc.Report.Error (177, p.Location,
3752                                         "The out parameter `{0}' must be assigned to before control leaves the current method",
3753                                         p.Parameter.Name);
3754                         }                                       
3755                 }
3756
3757                 protected override void CloneTo (CloneContext clonectx, Statement t)
3758                 {
3759                         base.CloneTo (clonectx, t);
3760
3761                         var target = (ParametersBlock) t;
3762
3763                         //
3764                         // Clone label statements as well as they contain block reference
3765                         //
3766                         var pb = this;
3767                         while (true) {
3768                                 if (pb.labels != null) {
3769                                         target.labels = new Dictionary<string, object> ();
3770
3771                                         foreach (var entry in pb.labels) {
3772                                                 var list = entry.Value as List<LabeledStatement>;
3773
3774                                                 if (list != null) {
3775                                                         var list_clone = new List<LabeledStatement> ();
3776                                                         foreach (var lentry in list) {
3777                                                                 list_clone.Add (RemapLabeledStatement (lentry, clonectx.RemapBlockCopy (lentry.Block)));
3778                                                         }
3779
3780                                                         target.labels.Add (entry.Key, list_clone);
3781                                                 } else {
3782                                                         var labeled = (LabeledStatement) entry.Value;
3783                                                         target.labels.Add (entry.Key, RemapLabeledStatement (labeled, clonectx.RemapBlockCopy (labeled.Block)));
3784                                                 }
3785                                         }
3786
3787                                         break;
3788                                 }
3789
3790                                 if (pb.Parent == null)
3791                                         break;
3792
3793                                 pb = pb.Parent.ParametersBlock;
3794                         }
3795                 }
3796
3797                 public override Expression CreateExpressionTree (ResolveContext ec)
3798                 {
3799                         if (statements.Count == 1) {
3800                                 Expression expr = statements[0].CreateExpressionTree (ec);
3801                                 if (scope_initializers != null)
3802                                         expr = new BlockScopeExpression (expr, this);
3803
3804                                 return expr;
3805                         }
3806
3807                         return base.CreateExpressionTree (ec);
3808                 }
3809
3810                 public override void Emit (EmitContext ec)
3811                 {
3812                         if (state_machine != null && state_machine.OriginalSourceBlock != this) {
3813                                 DefineStoreyContainer (ec, state_machine);
3814                                 state_machine.EmitStoreyInstantiation (ec, this);
3815                         }
3816
3817                         base.Emit (ec);
3818                 }
3819
3820                 public void EmitEmbedded (EmitContext ec)
3821                 {
3822                         if (state_machine != null && state_machine.OriginalSourceBlock != this) {
3823                                 DefineStoreyContainer (ec, state_machine);
3824                                 state_machine.EmitStoreyInstantiation (ec, this);
3825                         }
3826
3827                         base.Emit (ec);
3828                 }
3829
3830                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
3831                 {
3832                         var res = base.DoFlowAnalysis (fc);
3833
3834                         if (HasReachableClosingBrace)
3835                                 CheckControlExit (fc);
3836
3837                         return res;
3838                 }
3839
3840                 public LabeledStatement GetLabel (string name, Block block)
3841                 {
3842                         //
3843                         // Cloned parameters blocks can have their own cloned version of top-level labels
3844                         //
3845                         if (labels == null) {
3846                                 if (Parent != null)
3847                                         return Parent.ParametersBlock.GetLabel (name, block);
3848
3849                                 return null;
3850                         }
3851
3852                         object value;
3853                         if (!labels.TryGetValue (name, out value)) {
3854                                 return null;
3855                         }
3856
3857                         var label = value as LabeledStatement;
3858                         Block b = block;
3859                         if (label != null) {
3860                                 if (IsLabelVisible (label, b))
3861                                         return label;
3862
3863                         } else {
3864                                 List<LabeledStatement> list = (List<LabeledStatement>) value;
3865                                 for (int i = 0; i < list.Count; ++i) {
3866                                         label = list[i];
3867                                         if (IsLabelVisible (label, b))
3868                                                 return label;
3869                                 }
3870                         }
3871
3872                         return null;
3873                 }
3874
3875                 static bool IsLabelVisible (LabeledStatement label, Block b)
3876                 {
3877                         do {
3878                                 if (label.Block == b)
3879                                         return true;
3880                                 b = b.Parent;
3881                         } while (b != null);
3882
3883                         return false;
3884                 }
3885
3886                 public ParameterInfo GetParameterInfo (Parameter p)
3887                 {
3888                         for (int i = 0; i < parameters.Count; ++i) {
3889                                 if (parameters[i] == p)
3890                                         return parameter_info[i];
3891                         }
3892
3893                         throw new ArgumentException ("Invalid parameter");
3894                 }
3895
3896                 public ParameterReference GetParameterReference (int index, Location loc)
3897                 {
3898                         return new ParameterReference (parameter_info[index], loc);
3899                 }
3900
3901                 public Statement PerformClone (ref HashSet<LocalVariable> undeclaredVariables)
3902                 {
3903                         undeclaredVariables = TopBlock.GetUndeclaredVariables ();
3904
3905                         CloneContext clonectx = new CloneContext ();
3906                         return Clone (clonectx);
3907                 }
3908
3909                 protected void ProcessParameters ()
3910                 {
3911                         if (parameters.Count == 0)
3912                                 return;
3913
3914                         parameter_info = new ParameterInfo[parameters.Count];
3915                         for (int i = 0; i < parameter_info.Length; ++i) {
3916                                 var p = parameters.FixedParameters[i];
3917                                 if (p == null)
3918                                         continue;
3919
3920                                 // TODO: Should use Parameter only and more block there
3921                                 parameter_info[i] = new ParameterInfo (this, i);
3922                                 if (p.Name != null)
3923                                         AddLocalName (p.Name, parameter_info[i]);
3924                         }
3925                 }
3926
3927                 LabeledStatement RemapLabeledStatement (LabeledStatement stmt, Block dst)
3928                 {
3929                         var src = stmt.Block;
3930
3931                         //
3932                         // Cannot remap label block if the label was not yet cloned which
3933                         // can happen in case of anonymous method inside anoynymous method
3934                         // with a label. But in this case we don't care because goto cannot
3935                         // jump of out anonymous method
3936                         //
3937                         if (src.ParametersBlock != this)
3938                                 return stmt;
3939
3940                         var src_stmts = src.Statements;
3941                         for (int i = 0; i < src_stmts.Count; ++i) {
3942                                 if (src_stmts[i] == stmt)
3943                                         return (LabeledStatement) dst.Statements[i];
3944                         }
3945
3946                         throw new InternalErrorException ("Should never be reached");
3947                 }
3948
3949                 public override bool Resolve (BlockContext bc)
3950                 {
3951                         // TODO: if ((flags & Flags.Resolved) != 0)
3952
3953                         if (resolved)
3954                                 return true;
3955
3956                         resolved = true;
3957
3958                         if (bc.HasSet (ResolveContext.Options.ExpressionTreeConversion))
3959                                 flags |= Flags.IsExpressionTree;
3960
3961                         try {
3962                                 PrepareAssignmentAnalysis (bc);
3963
3964                                 if (!base.Resolve (bc))
3965                                         return false;
3966
3967                         } catch (Exception e) {
3968                                 if (e is CompletionResult || bc.Report.IsDisabled || e is FatalException || bc.Report.Printer is NullReportPrinter || bc.Module.Compiler.Settings.BreakOnInternalError)
3969                                         throw;
3970
3971                                 if (bc.CurrentBlock != null) {
3972                                         bc.Report.Error (584, bc.CurrentBlock.StartLocation, "Internal compiler error: {0}", e.Message);
3973                                 } else {
3974                                         bc.Report.Error (587, "Internal compiler error: {0}", e.Message);
3975                                 }
3976                         }
3977
3978                         //
3979                         // If an asynchronous body of F is either an expression classified as nothing, or a 
3980                         // statement block where no return statements have expressions, the inferred return type is Task
3981                         //
3982                         if (IsAsync) {
3983                                 var am = bc.CurrentAnonymousMethod as AnonymousMethodBody;
3984                                 if (am != null && am.ReturnTypeInference != null && !am.ReturnTypeInference.HasBounds (0)) {
3985                                         am.ReturnTypeInference = null;
3986                                         am.ReturnType = bc.Module.PredefinedTypes.Task.TypeSpec;
3987                                         return true;
3988                                 }
3989                         }
3990
3991                         return true;
3992                 }
3993
3994                 void PrepareAssignmentAnalysis (BlockContext bc)
3995                 {
3996                         for (int i = 0; i < parameters.Count; ++i) {
3997                                 var par = parameters.FixedParameters[i];
3998
3999                                 if ((par.ModFlags & Parameter.Modifier.OUT) == 0)
4000                                         continue;
4001
4002                                 parameter_info [i].VariableInfo = VariableInfo.Create (bc, (Parameter) par);
4003                         }
4004                 }
4005
4006                 public ToplevelBlock ConvertToIterator (IMethodData method, TypeDefinition host, TypeSpec iterator_type, bool is_enumerable)
4007                 {
4008                         var iterator = new Iterator (this, method, host, iterator_type, is_enumerable);
4009                         var stateMachine = new IteratorStorey (iterator);
4010
4011                         state_machine = stateMachine;
4012                         iterator.SetStateMachine (stateMachine);
4013
4014                         var tlb = new ToplevelBlock (host.Compiler, Parameters, Location.Null, Flags.CompilerGenerated);
4015                         tlb.Original = this;
4016                         tlb.state_machine = stateMachine;
4017                         tlb.AddStatement (new Return (iterator, iterator.Location));
4018                         return tlb;
4019                 }
4020
4021                 public ParametersBlock ConvertToAsyncTask (IMemberContext context, TypeDefinition host, ParametersCompiled parameters, TypeSpec returnType, TypeSpec delegateType, Location loc)
4022                 {
4023                         for (int i = 0; i < parameters.Count; i++) {
4024                                 Parameter p = parameters[i];
4025                                 Parameter.Modifier mod = p.ModFlags;
4026                                 if ((mod & Parameter.Modifier.RefOutMask) != 0) {
4027                                         host.Compiler.Report.Error (1988, p.Location,
4028                                                 "Async methods cannot have ref or out parameters");
4029                                         return this;
4030                                 }
4031
4032                                 if (p is ArglistParameter) {
4033                                         host.Compiler.Report.Error (4006, p.Location,
4034                                                 "__arglist is not allowed in parameter list of async methods");
4035                                         return this;
4036                                 }
4037
4038                                 if (parameters.Types[i].IsPointer) {
4039                                         host.Compiler.Report.Error (4005, p.Location,
4040                                                 "Async methods cannot have unsafe parameters");
4041                                         return this;
4042                                 }
4043                         }
4044
4045                         if (!HasAwait) {
4046                                 host.Compiler.Report.Warning (1998, 1, loc,
4047                                         "Async block lacks `await' operator and will run synchronously");
4048                         }
4049
4050                         var block_type = host.Module.Compiler.BuiltinTypes.Void;
4051                         var initializer = new AsyncInitializer (this, host, block_type);
4052                         initializer.Type = block_type;
4053                         initializer.DelegateType = delegateType;
4054
4055                         var stateMachine = new AsyncTaskStorey (this, context, initializer, returnType);
4056
4057                         state_machine = stateMachine;
4058                         initializer.SetStateMachine (stateMachine);
4059
4060                         const Flags flags = Flags.CompilerGenerated;
4061
4062                         var b = this is ToplevelBlock ?
4063                                 new ToplevelBlock (host.Compiler, Parameters, Location.Null, flags) :
4064                                 new ParametersBlock (Parent, parameters, Location.Null, flags | Flags.HasAsyncModifier);
4065
4066                         b.Original = this;
4067                         b.state_machine = stateMachine;
4068                         b.AddStatement (new AsyncInitializerStatement (initializer));
4069                         return b;
4070                 }
4071         }
4072
4073         //
4074         //
4075         //
4076         public class ToplevelBlock : ParametersBlock
4077         {
4078                 LocalVariable this_variable;
4079                 CompilerContext compiler;
4080                 Dictionary<string, object> names;
4081
4082                 List<ExplicitBlock> this_references;
4083
4084                 public ToplevelBlock (CompilerContext ctx, Location loc)
4085                         : this (ctx, ParametersCompiled.EmptyReadOnlyParameters, loc)
4086                 {
4087                 }
4088
4089                 public ToplevelBlock (CompilerContext ctx, ParametersCompiled parameters, Location start, Flags flags = 0)
4090                         : base (parameters, start)
4091                 {
4092                         this.compiler = ctx;
4093                         this.flags = flags;
4094                         top_block = this;
4095
4096                         ProcessParameters ();
4097                 }
4098
4099                 //
4100                 // Recreates a top level block from parameters block. Used for
4101                 // compiler generated methods where the original block comes from
4102                 // explicit child block. This works for already resolved blocks
4103                 // only to ensure we resolve them in the correct flow order
4104                 //
4105                 public ToplevelBlock (ParametersBlock source, ParametersCompiled parameters)
4106                         : base (source, parameters)
4107                 {
4108                         this.compiler = source.TopBlock.compiler;
4109                         top_block = this;
4110                 }
4111
4112                 public bool IsIterator {
4113                         get {
4114                                 return (flags & Flags.Iterator) != 0;
4115                         }
4116                         set {
4117                                 flags = value ? flags | Flags.Iterator : flags & ~Flags.Iterator;
4118                         }
4119                 }
4120
4121                 public Report Report {
4122                         get {
4123                                 return compiler.Report;
4124                         }
4125                 }
4126
4127                 //
4128                 // Used by anonymous blocks to track references of `this' variable
4129                 //
4130                 public List<ExplicitBlock> ThisReferencesFromChildrenBlock {
4131                         get {
4132                                 return this_references;
4133                         }
4134                 }
4135
4136                 //
4137                 // Returns the "this" instance variable of this block.
4138                 // See AddThisVariable() for more information.
4139                 //
4140                 public LocalVariable ThisVariable {
4141                         get {
4142                                 return this_variable;
4143                         }
4144                 }
4145
4146                 public void AddLocalName (string name, INamedBlockVariable li, bool ignoreChildrenBlocks)
4147                 {
4148                         if (names == null)
4149                                 names = new Dictionary<string, object> ();
4150
4151                         object value;
4152                         if (!names.TryGetValue (name, out value)) {
4153                                 names.Add (name, li);
4154                                 return;
4155                         }
4156
4157                         INamedBlockVariable existing = value as INamedBlockVariable;
4158                         List<INamedBlockVariable> existing_list;
4159                         if (existing != null) {
4160                                 existing_list = new List<INamedBlockVariable> ();
4161                                 existing_list.Add (existing);
4162                                 names[name] = existing_list;
4163                         } else {
4164                                 existing_list = (List<INamedBlockVariable>) value;
4165                         }
4166
4167                         //
4168                         // A collision checking between local names
4169                         //
4170                         var variable_block = li.Block.Explicit;
4171                         for (int i = 0; i < existing_list.Count; ++i) {
4172                                 existing = existing_list[i];
4173                                 Block b = existing.Block.Explicit;
4174
4175                                 // Collision at same level
4176                                 if (variable_block == b) {
4177                                         li.Block.Error_AlreadyDeclared (name, li);
4178                                         break;
4179                                 }
4180
4181                                 // Collision with parent
4182                                 Block parent = variable_block;
4183                                 while ((parent = parent.Parent) != null) {
4184                                         if (parent == b) {
4185                                                 li.Block.Error_AlreadyDeclared (name, li, "parent or current");
4186                                                 i = existing_list.Count;
4187                                                 break;
4188                                         }
4189                                 }
4190
4191                                 if (!ignoreChildrenBlocks && variable_block.Parent != b.Parent) {
4192                                         // Collision with children
4193                                         while ((b = b.Parent) != null) {
4194                                                 if (variable_block == b) {
4195                                                         li.Block.Error_AlreadyDeclared (name, li, "child");
4196                                                         i = existing_list.Count;
4197                                                         break;
4198                                                 }
4199                                         }
4200                                 }
4201                         }
4202
4203                         existing_list.Add (li);
4204                 }
4205
4206                 public void AddLabel (string name, LabeledStatement label)
4207                 {
4208                         if (labels == null)
4209                                 labels = new Dictionary<string, object> ();
4210
4211                         object value;
4212                         if (!labels.TryGetValue (name, out value)) {
4213                                 labels.Add (name, label);
4214                                 return;
4215                         }
4216
4217                         LabeledStatement existing = value as LabeledStatement;
4218                         List<LabeledStatement> existing_list;
4219                         if (existing != null) {
4220                                 existing_list = new List<LabeledStatement> ();
4221                                 existing_list.Add (existing);
4222                                 labels[name] = existing_list;
4223                         } else {
4224                                 existing_list = (List<LabeledStatement>) value;
4225                         }
4226
4227                         //
4228                         // A collision checking between labels
4229                         //
4230                         for (int i = 0; i < existing_list.Count; ++i) {
4231                                 existing = existing_list[i];
4232                                 Block b = existing.Block;
4233
4234                                 // Collision at same level
4235                                 if (label.Block == b) {
4236                                         Report.SymbolRelatedToPreviousError (existing.loc, name);
4237                                         Report.Error (140, label.loc, "The label `{0}' is a duplicate", name);
4238                                         break;
4239                                 }
4240
4241                                 // Collision with parent
4242                                 b = label.Block;
4243                                 while ((b = b.Parent) != null) {
4244                                         if (existing.Block == b) {
4245                                                 Report.Error (158, label.loc,
4246                                                         "The label `{0}' shadows another label by the same name in a contained scope", name);
4247                                                 i = existing_list.Count;
4248                                                 break;
4249                                         }
4250                                 }
4251
4252                                 // Collision with with children
4253                                 b = existing.Block;
4254                                 while ((b = b.Parent) != null) {
4255                                         if (label.Block == b) {
4256                                                 Report.Error (158, label.loc,
4257                                                         "The label `{0}' shadows another label by the same name in a contained scope", name);
4258                                                 i = existing_list.Count;
4259                                                 break;
4260                                         }
4261                                 }
4262                         }
4263
4264                         existing_list.Add (label);
4265                 }
4266
4267                 public void AddThisReferenceFromChildrenBlock (ExplicitBlock block)
4268                 {
4269                         if (this_references == null)
4270                                 this_references = new List<ExplicitBlock> ();
4271
4272                         if (!this_references.Contains (block))
4273                                 this_references.Add (block);
4274                 }
4275
4276                 public void RemoveThisReferenceFromChildrenBlock (ExplicitBlock block)
4277                 {
4278                         this_references.Remove (block);
4279                 }
4280
4281                 //
4282                 // Creates an arguments set from all parameters, useful for method proxy calls
4283                 //
4284                 public Arguments GetAllParametersArguments ()
4285                 {
4286                         int count = parameters.Count;
4287                         Arguments args = new Arguments (count);
4288                         for (int i = 0; i < count; ++i) {
4289                                 var pi = parameter_info[i];
4290                                 var arg_expr = GetParameterReference (i, pi.Location);
4291
4292                                 Argument.AType atype_modifier;
4293                                 switch (pi.Parameter.ParameterModifier & Parameter.Modifier.RefOutMask) {
4294                                 case Parameter.Modifier.REF:
4295                                         atype_modifier = Argument.AType.Ref;
4296                                         break;
4297                                 case Parameter.Modifier.OUT:
4298                                         atype_modifier = Argument.AType.Out;
4299                                         break;
4300                                 default:
4301                                         atype_modifier = 0;
4302                                         break;
4303                                 }
4304
4305                                 args.Add (new Argument (arg_expr, atype_modifier));
4306                         }
4307
4308                         return args;
4309                 }
4310
4311                 //
4312                 // Lookup inside a block, the returned value can represent 3 states
4313                 //
4314                 // true+variable: A local name was found and it's valid
4315                 // false+variable: A local name was found in a child block only
4316                 // false+null: No local name was found
4317                 //
4318                 public bool GetLocalName (string name, Block block, ref INamedBlockVariable variable)
4319                 {
4320                         if (names == null)
4321                                 return false;
4322
4323                         object value;
4324                         if (!names.TryGetValue (name, out value))
4325                                 return false;
4326
4327                         variable = value as INamedBlockVariable;
4328                         Block b = block;
4329                         if (variable != null) {
4330                                 do {
4331                                         if (variable.Block == b.Original)
4332                                                 return true;
4333
4334                                         b = b.Parent;
4335                                 } while (b != null);
4336
4337                                 b = variable.Block;
4338                                 do {
4339                                         if (block == b)
4340                                                 return false;
4341
4342                                         b = b.Parent;
4343                                 } while (b != null);
4344                         } else {
4345                                 List<INamedBlockVariable> list = (List<INamedBlockVariable>) value;
4346                                 for (int i = 0; i < list.Count; ++i) {
4347                                         variable = list[i];
4348                                         do {
4349                                                 if (variable.Block == b.Original)
4350                                                         return true;
4351
4352                                                 b = b.Parent;
4353                                         } while (b != null);
4354
4355                                         b = variable.Block;
4356                                         do {
4357                                                 if (block == b)
4358                                                         return false;
4359
4360                                                 b = b.Parent;
4361                                         } while (b != null);
4362
4363                                         b = block;
4364                                 }
4365                         }
4366
4367                         variable = null;
4368                         return false;
4369                 }
4370
4371                 public void IncludeBlock (ParametersBlock pb, ToplevelBlock block)
4372                 {
4373                         if (block.names != null) {
4374                                 foreach (var n in block.names) {
4375                                         var variable = n.Value as INamedBlockVariable;
4376                                         if (variable != null) {
4377                                                 if (variable.Block.ParametersBlock == pb)
4378                                                         AddLocalName (n.Key, variable, false);
4379                                                 continue;
4380                                         }
4381
4382                                         foreach (var v in (List<INamedBlockVariable>) n.Value)
4383                                                 if (v.Block.ParametersBlock == pb)
4384                                                         AddLocalName (n.Key, v, false);
4385                                 }
4386                         }
4387                 }
4388
4389                 // <summary>
4390                 //   This is used by non-static `struct' constructors which do not have an
4391                 //   initializer - in this case, the constructor must initialize all of the
4392                 //   struct's fields.  To do this, we add a "this" variable and use the flow
4393                 //   analysis code to ensure that it's been fully initialized before control
4394                 //   leaves the constructor.
4395                 // </summary>
4396                 public void AddThisVariable (BlockContext bc)
4397                 {
4398                         if (this_variable != null)
4399                                 throw new InternalErrorException (StartLocation.ToString ());
4400
4401                         this_variable = new LocalVariable (this, "this", LocalVariable.Flags.IsThis | LocalVariable.Flags.Used, StartLocation);
4402                         this_variable.Type = bc.CurrentType;
4403                         this_variable.PrepareAssignmentAnalysis (bc);
4404                 }
4405
4406                 public override void CheckControlExit (FlowAnalysisContext fc, DefiniteAssignmentBitSet dat)
4407                 {
4408                         //
4409                         // If we're a non-static struct constructor which doesn't have an
4410                         // initializer, then we must initialize all of the struct's fields.
4411                         //
4412                         if (this_variable != null)
4413                                 this_variable.IsThisAssigned (fc, this);
4414
4415                         base.CheckControlExit (fc, dat);
4416                 }
4417
4418                 public HashSet<LocalVariable> GetUndeclaredVariables ()
4419                 {
4420                         if (names == null)
4421                                 return null;
4422
4423                         HashSet<LocalVariable> variables = null;
4424
4425                         foreach (var entry in names) {
4426                                 var complex = entry.Value as List<INamedBlockVariable>;
4427                                 if (complex != null) {
4428                                         foreach (var centry in complex) {
4429                                                 if (IsUndeclaredVariable (centry)) {
4430                                                         if (variables == null)
4431                                                                 variables = new HashSet<LocalVariable> ();
4432
4433                                                         variables.Add ((LocalVariable) centry);
4434                                                 }
4435                                         }
4436                                 } else if (IsUndeclaredVariable ((INamedBlockVariable)entry.Value)) {
4437                                         if (variables == null)
4438                                                 variables = new HashSet<LocalVariable> ();
4439
4440                                         variables.Add ((LocalVariable)entry.Value);                                     
4441                                 }
4442                         }
4443
4444                         return variables;
4445                 }
4446
4447                 static bool IsUndeclaredVariable (INamedBlockVariable namedBlockVariable)
4448                 {
4449                         var lv = namedBlockVariable as LocalVariable;
4450                         return lv != null && !lv.IsDeclared;
4451                 }
4452
4453                 public void SetUndeclaredVariables (HashSet<LocalVariable> undeclaredVariables)
4454                 {
4455                         if (names == null)
4456                                 return;
4457                         
4458                         foreach (var entry in names) {
4459                                 var complex = entry.Value as List<INamedBlockVariable>;
4460                                 if (complex != null) {
4461                                         foreach (var centry in complex) {
4462                                                 var lv = centry as LocalVariable;
4463                                                 if (lv != null && undeclaredVariables.Contains (lv)) {
4464                                                         lv.Type = null;
4465                                                 }
4466                                         }
4467                                 } else {
4468                                         var lv = entry.Value as LocalVariable;
4469                                         if (lv != null && undeclaredVariables.Contains (lv))
4470                                                 lv.Type = null;
4471                                 }
4472                         }
4473                 }
4474
4475                 public override void Emit (EmitContext ec)
4476                 {
4477                         if (Report.Errors > 0)
4478                                 return;
4479
4480                         try {
4481                         if (IsCompilerGenerated) {
4482                                 using (ec.With (BuilderContext.Options.OmitDebugInfo, true)) {
4483                                         base.Emit (ec);
4484                                 }
4485                         } else {
4486                                 base.Emit (ec);
4487                         }
4488
4489                         //
4490                         // If `HasReturnLabel' is set, then we already emitted a
4491                         // jump to the end of the method, so we must emit a `ret'
4492                         // there.
4493                         //
4494                         // Unfortunately, System.Reflection.Emit automatically emits
4495                         // a leave to the end of a finally block.  This is a problem
4496                         // if no code is following the try/finally block since we may
4497                         // jump to a point after the end of the method.
4498                         // As a workaround, we're always creating a return label in
4499                         // this case.
4500                         //
4501                         if (ec.HasReturnLabel || HasReachableClosingBrace) {
4502                                 if (ec.HasReturnLabel)
4503                                         ec.MarkLabel (ec.ReturnLabel);
4504
4505                                 if (ec.EmitAccurateDebugInfo && !IsCompilerGenerated)
4506                                         ec.Mark (EndLocation);
4507
4508                                 if (ec.ReturnType.Kind != MemberKind.Void)
4509                                         ec.Emit (OpCodes.Ldloc, ec.TemporaryReturn ());
4510
4511                                 ec.Emit (OpCodes.Ret);
4512                         }
4513
4514                         } catch (Exception e) {
4515                                 throw new InternalErrorException (e, StartLocation);
4516                         }
4517                 }
4518
4519                 public bool Resolve (BlockContext bc, IMethodData md)
4520                 {
4521                         if (resolved)
4522                                 return true;
4523
4524                         var errors = bc.Report.Errors;
4525
4526                         base.Resolve (bc);
4527
4528                         if (bc.Report.Errors > errors)
4529                                 return false;
4530
4531                         MarkReachable (new Reachability ());
4532
4533                         if (HasReachableClosingBrace && bc.ReturnType.Kind != MemberKind.Void) {
4534                                 // TODO: var md = bc.CurrentMemberDefinition;
4535                                 bc.Report.Error (161, md.Location, "`{0}': not all code paths return a value", md.GetSignatureForError ());
4536                         }
4537
4538                         if ((flags & Flags.NoFlowAnalysis) != 0)
4539                                 return true;
4540
4541                         var fc = new FlowAnalysisContext (bc.Module.Compiler, this, bc.AssignmentInfoOffset);
4542                         try {
4543                                 FlowAnalysis (fc);
4544                         } catch (Exception e) {
4545                                 throw new InternalErrorException (e, StartLocation);
4546                         }
4547
4548                         return true;
4549                 }
4550         }
4551         
4552         public class SwitchLabel : Statement
4553         {
4554                 Constant converted;
4555                 Expression label;
4556
4557                 Label? il_label;
4558
4559                 //
4560                 // if expr == null, then it is the default case.
4561                 //
4562                 public SwitchLabel (Expression expr, Location l)
4563                 {
4564                         label = expr;
4565                         loc = l;
4566                 }
4567
4568                 public bool IsDefault {
4569                         get {
4570                                 return label == null;
4571                         }
4572                 }
4573
4574                 public Expression Label {
4575                         get {
4576                                 return label;
4577                         }
4578                 }
4579
4580                 public Location Location {
4581                         get {
4582                                 return loc;
4583                         }
4584                 }
4585
4586                 public Constant Converted {
4587                         get {
4588                                 return converted;
4589                         }
4590                         set {
4591                                 converted = value; 
4592                         }
4593                 }
4594
4595                 public bool PatternMatching { get; set; }
4596
4597                 public bool SectionStart { get; set; }
4598
4599                 public Label GetILLabel (EmitContext ec)
4600                 {
4601                         if (il_label == null){
4602                                 il_label = ec.DefineLabel ();
4603                         }
4604
4605                         return il_label.Value;
4606                 }
4607
4608                 protected override void DoEmit (EmitContext ec)
4609                 {
4610                         ec.MarkLabel (GetILLabel (ec));
4611                 }
4612
4613                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
4614                 {
4615                         if (!SectionStart)
4616                                 return false;
4617
4618                         fc.BranchDefiniteAssignment (fc.SwitchInitialDefinitiveAssignment);
4619                         return false;
4620                 }
4621
4622                 public override bool Resolve (BlockContext bc)
4623                 {
4624                         if (ResolveAndReduce (bc))
4625                                 bc.Switch.RegisterLabel (bc, this);
4626
4627                         return true;
4628                 }
4629
4630                 //
4631                 // Resolves the expression, reduces it to a literal if possible
4632                 // and then converts it to the requested type.
4633                 //
4634                 bool ResolveAndReduce (BlockContext bc)
4635                 {
4636                         if (IsDefault)
4637                                 return true;
4638
4639                         var switch_statement = bc.Switch;
4640
4641                         if (PatternMatching) {
4642                                 label = new Is (switch_statement.ExpressionValue, label, loc).Resolve (bc);
4643                                 return label != null;
4644                         }
4645
4646                         var c = label.ResolveLabelConstant (bc);
4647                         if (c == null)
4648                                 return false;
4649
4650                         if (switch_statement.IsNullable && c is NullLiteral) {
4651                                 converted = c;
4652                                 return true;
4653                         }
4654
4655                         if (switch_statement.IsPatternMatching) {
4656                                 label = new Is (switch_statement.ExpressionValue, label, loc).Resolve (bc);
4657                                 return true;
4658                         }
4659
4660                         converted = c.ImplicitConversionRequired (bc, switch_statement.SwitchType);
4661                         return converted != null;
4662                 }
4663
4664                 public void Error_AlreadyOccurs (ResolveContext ec, SwitchLabel collision_with)
4665                 {
4666                         ec.Report.SymbolRelatedToPreviousError (collision_with.loc, null);
4667                         ec.Report.Error (152, loc, "The label `{0}' already occurs in this switch statement", GetSignatureForError ());
4668                 }
4669
4670                 protected override void CloneTo (CloneContext clonectx, Statement target)
4671                 {
4672                         var t = (SwitchLabel) target;
4673                         if (label != null)
4674                                 t.label = label.Clone (clonectx);
4675                 }
4676
4677                 public override object Accept (StructuralVisitor visitor)
4678                 {
4679                         return visitor.Visit (this);
4680                 }
4681
4682                 public string GetSignatureForError ()
4683                 {
4684                         string label;
4685                         if (converted == null)
4686                                 label = "default";
4687                         else
4688                                 label = converted.GetValueAsLiteral ();
4689
4690                         return string.Format ("case {0}:", label);
4691                 }
4692         }
4693
4694         public class Switch : LoopStatement
4695         {
4696                 // structure used to hold blocks of keys while calculating table switch
4697                 sealed class LabelsRange : IComparable<LabelsRange>
4698                 {
4699                         public readonly long min;
4700                         public long max;
4701                         public readonly List<long> label_values;
4702
4703                         public LabelsRange (long value)
4704                         {
4705                                 min = max = value;
4706                                 label_values = new List<long> ();
4707                                 label_values.Add (value);
4708                         }
4709
4710                         public LabelsRange (long min, long max, ICollection<long> values)
4711                         {
4712                                 this.min = min;
4713                                 this.max = max;
4714                                 this.label_values = new List<long> (values);
4715                         }
4716
4717                         public long Range {
4718                                 get {
4719                                         return max - min + 1;
4720                                 }
4721                         }
4722
4723                         public bool AddValue (long value)
4724                         {
4725                                 var gap = value - min + 1;
4726                                 // Ensure the range has > 50% occupancy
4727                                 if (gap > 2 * (label_values.Count + 1) || gap <= 0)
4728                                         return false;
4729
4730                                 max = value;
4731                                 label_values.Add (value);
4732                                 return true;
4733                         }
4734
4735                         public int CompareTo (LabelsRange other)
4736                         {
4737                                 int nLength = label_values.Count;
4738                                 int nLengthOther = other.label_values.Count;
4739                                 if (nLengthOther == nLength)
4740                                         return (int) (other.min - min);
4741
4742                                 return nLength - nLengthOther;
4743                         }
4744                 }
4745
4746                 sealed class DispatchStatement : Statement
4747                 {
4748                         readonly Switch body;
4749
4750                         public DispatchStatement (Switch body)
4751                         {
4752                                 this.body = body;
4753                         }
4754
4755                         protected override void CloneTo (CloneContext clonectx, Statement target)
4756                         {
4757                                 throw new NotImplementedException ();
4758                         }
4759
4760                         protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
4761                         {
4762                                 return false;
4763                         }
4764
4765                         protected override void DoEmit (EmitContext ec)
4766                         {
4767                                 body.EmitDispatch (ec);
4768                         }
4769                 }
4770
4771                 class MissingBreak : Statement
4772                 {
4773                         readonly SwitchLabel label;
4774
4775                         public MissingBreak (SwitchLabel sl)
4776                         {
4777                                 this.label = sl;
4778                                 this.loc = sl.loc;
4779                         }
4780
4781                         public bool FallOut { get; set; }
4782
4783                         protected override void DoEmit (EmitContext ec)
4784                         {
4785                         }
4786
4787                         protected override void CloneTo (CloneContext clonectx, Statement target)
4788                         {
4789                         }
4790
4791                         protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
4792                         {
4793                                 if (FallOut) {
4794                                         fc.Report.Error (8070, loc, "Control cannot fall out of switch statement through final case label `{0}'",
4795                                                 label.GetSignatureForError ());
4796                                 } else {
4797                                         fc.Report.Error (163, loc, "Control cannot fall through from one case label `{0}' to another",
4798                                                 label.GetSignatureForError ());
4799                                 }
4800                                 return true;
4801                         }
4802                 }
4803
4804                 public Expression Expr;
4805
4806                 //
4807                 // Mapping of all labels to their SwitchLabels
4808                 //
4809                 Dictionary<long, SwitchLabel> labels;
4810                 Dictionary<string, SwitchLabel> string_labels;
4811                 List<SwitchLabel> case_labels;
4812
4813                 List<Tuple<GotoCase, Constant>> goto_cases;
4814                 List<DefiniteAssignmentBitSet> end_reachable_das;
4815
4816                 /// <summary>
4817                 ///   The governing switch type
4818                 /// </summary>
4819                 public TypeSpec SwitchType;
4820
4821                 Expression new_expr;
4822
4823                 SwitchLabel case_null;
4824                 SwitchLabel case_default;
4825
4826                 Label defaultLabel, nullLabel;
4827                 VariableReference value;
4828                 ExpressionStatement string_dictionary;
4829                 FieldExpr switch_cache_field;
4830                 ExplicitBlock block;
4831                 bool end_reachable;
4832
4833                 //
4834                 // Nullable Types support
4835                 //
4836                 Nullable.Unwrap unwrap;
4837
4838                 public Switch (Expression e, ExplicitBlock block, Location l)
4839                         : base (block)
4840                 {
4841                         Expr = e;
4842                         this.block = block;
4843                         loc = l;
4844                 }
4845
4846                 public SwitchLabel ActiveLabel { get; set; }
4847
4848                 public ExplicitBlock Block {
4849                         get {
4850                                 return block;
4851                         }
4852                 }
4853
4854                 public SwitchLabel DefaultLabel {
4855                         get {
4856                                 return case_default;
4857                         }
4858                 }
4859
4860                 public bool IsNullable {
4861                         get {
4862                                 return unwrap != null;
4863                         }
4864                 }
4865
4866                 public bool IsPatternMatching {
4867                         get {
4868                                 return new_expr == null && SwitchType != null;
4869                         }
4870                 }
4871
4872                 public List<SwitchLabel> RegisteredLabels {
4873                         get {
4874                                 return case_labels;
4875                         }
4876                 }
4877
4878                 public VariableReference ExpressionValue {
4879                         get {
4880                                 return value;
4881                         }
4882                 }
4883
4884                 //
4885                 // Determines the governing type for a switch.  The returned
4886                 // expression might be the expression from the switch, or an
4887                 // expression that includes any potential conversions to
4888                 //
4889                 static Expression SwitchGoverningType (ResolveContext rc, Expression expr, bool unwrapExpr)
4890                 {
4891                         switch (expr.Type.BuiltinType) {
4892                         case BuiltinTypeSpec.Type.Byte:
4893                         case BuiltinTypeSpec.Type.SByte:
4894                         case BuiltinTypeSpec.Type.UShort:
4895                         case BuiltinTypeSpec.Type.Short:
4896                         case BuiltinTypeSpec.Type.UInt:
4897                         case BuiltinTypeSpec.Type.Int:
4898                         case BuiltinTypeSpec.Type.ULong:
4899                         case BuiltinTypeSpec.Type.Long:
4900                         case BuiltinTypeSpec.Type.Char:
4901                         case BuiltinTypeSpec.Type.String:
4902                         case BuiltinTypeSpec.Type.Bool:
4903                                 return expr;
4904                         }
4905
4906                         if (expr.Type.IsEnum)
4907                                 return expr;
4908
4909                         //
4910                         // Try to find a *user* defined implicit conversion.
4911                         //
4912                         // If there is no implicit conversion, or if there are multiple
4913                         // conversions, we have to report an error
4914                         //
4915                         Expression converted = null;
4916                         foreach (TypeSpec tt in rc.Module.PredefinedTypes.SwitchUserTypes) {
4917
4918                                 if (!unwrapExpr && tt.IsNullableType && expr.Type.IsNullableType)
4919                                         break;
4920
4921                                 var restr = Convert.UserConversionRestriction.ImplicitOnly |
4922                                         Convert.UserConversionRestriction.ProbingOnly;
4923
4924                                 if (unwrapExpr)
4925                                         restr |= Convert.UserConversionRestriction.NullableSourceOnly;
4926
4927                                 var e = Convert.UserDefinedConversion (rc, expr, tt, restr, Location.Null);
4928                                 if (e == null)
4929                                         continue;
4930
4931                                 //
4932                                 // Ignore over-worked ImplicitUserConversions that do
4933                                 // an implicit conversion in addition to the user conversion.
4934                                 // 
4935                                 var uc = e as UserCast;
4936                                 if (uc == null)
4937                                         continue;
4938
4939                                 if (converted != null){
4940 //                                      rc.Report.ExtraInformation (loc, "(Ambiguous implicit user defined conversion in previous ");
4941                                         return null;
4942                                 }
4943
4944                                 converted = e;
4945                         }
4946                         return converted;
4947                 }
4948
4949                 public static TypeSpec[] CreateSwitchUserTypes (ModuleContainer module, TypeSpec nullable)
4950                 {
4951                         var types = module.Compiler.BuiltinTypes;
4952
4953                         // LAMESPEC: For some reason it does not contain bool which looks like csc bug
4954                         TypeSpec[] stypes = new[] {
4955                                 types.SByte,
4956                                 types.Byte,
4957                                 types.Short,
4958                                 types.UShort,
4959                                 types.Int,
4960                                 types.UInt,
4961                                 types.Long,
4962                                 types.ULong,
4963                                 types.Char,
4964                                 types.String
4965                         };
4966
4967                         if (nullable != null) {
4968
4969                                 Array.Resize (ref stypes, stypes.Length + 9);
4970
4971                                 for (int i = 0; i < 9; ++i) {
4972                                         stypes [10 + i] = nullable.MakeGenericType (module, new [] { stypes [i] });
4973                                 }
4974                         }
4975
4976                         return stypes;
4977                 }
4978
4979                 public void RegisterLabel (BlockContext rc, SwitchLabel sl)
4980                 {
4981                         case_labels.Add (sl);
4982
4983                         if (sl.IsDefault) {
4984                                 if (case_default != null) {
4985                                         sl.Error_AlreadyOccurs (rc, case_default);
4986                                 } else {
4987                                         case_default = sl;
4988                                 }
4989
4990                                 return;
4991                         }
4992
4993                         if (sl.Converted == null)
4994                                 return;
4995
4996                         try {
4997                                 if (string_labels != null) {
4998                                         string string_value = sl.Converted.GetValue () as string;
4999                                         if (string_value == null)
5000                                                 case_null = sl;
5001                                         else
5002                                                 string_labels.Add (string_value, sl);
5003                                 } else {
5004                                         if (sl.Converted.IsNull) {
5005                                                 case_null = sl;
5006                                         } else {
5007                                                 labels.Add (sl.Converted.GetValueAsLong (), sl);
5008                                         }
5009                                 }
5010                         } catch (ArgumentException) {
5011                                 if (string_labels != null)
5012                                         sl.Error_AlreadyOccurs (rc, string_labels[(string) sl.Converted.GetValue ()]);
5013                                 else
5014                                         sl.Error_AlreadyOccurs (rc, labels[sl.Converted.GetValueAsLong ()]);
5015                         }
5016                 }
5017                 
5018                 //
5019                 // This method emits code for a lookup-based switch statement (non-string)
5020                 // Basically it groups the cases into blocks that are at least half full,
5021                 // and then spits out individual lookup opcodes for each block.
5022                 // It emits the longest blocks first, and short blocks are just
5023                 // handled with direct compares.
5024                 //
5025                 void EmitTableSwitch (EmitContext ec, Expression val)
5026                 {
5027                         if (labels != null && labels.Count > 0) {
5028                                 List<LabelsRange> ranges;
5029                                 if (string_labels != null) {
5030                                         // We have done all hard work for string already
5031                                         // setup single range only
5032                                         ranges = new List<LabelsRange> (1);
5033                                         ranges.Add (new LabelsRange (0, labels.Count - 1, labels.Keys));
5034                                 } else {
5035                                         var element_keys = new long[labels.Count];
5036                                         labels.Keys.CopyTo (element_keys, 0);
5037                                         Array.Sort (element_keys);
5038
5039                                         //
5040                                         // Build possible ranges of switch labes to reduce number
5041                                         // of comparisons
5042                                         //
5043                                         ranges = new List<LabelsRange> (element_keys.Length);
5044                                         var range = new LabelsRange (element_keys[0]);
5045                                         ranges.Add (range);
5046                                         for (int i = 1; i < element_keys.Length; ++i) {
5047                                                 var l = element_keys[i];
5048                                                 if (range.AddValue (l))
5049                                                         continue;
5050
5051                                                 range = new LabelsRange (l);
5052                                                 ranges.Add (range);
5053                                         }
5054
5055                                         // sort the blocks so we can tackle the largest ones first
5056                                         ranges.Sort ();
5057                                 }
5058
5059                                 Label lbl_default = defaultLabel;
5060                                 TypeSpec compare_type = SwitchType.IsEnum ? EnumSpec.GetUnderlyingType (SwitchType) : SwitchType;
5061
5062                                 for (int range_index = ranges.Count - 1; range_index >= 0; --range_index) {
5063                                         LabelsRange kb = ranges[range_index];
5064                                         lbl_default = (range_index == 0) ? defaultLabel : ec.DefineLabel ();
5065
5066                                         // Optimize small ranges using simple equality check
5067                                         if (kb.Range <= 2) {
5068                                                 foreach (var key in kb.label_values) {
5069                                                         SwitchLabel sl = labels[key];
5070                                                         if (sl == case_default || sl == case_null)
5071                                                                 continue;
5072
5073                                                         if (sl.Converted.IsZeroInteger) {
5074                                                                 val.EmitBranchable (ec, sl.GetILLabel (ec), false);
5075                                                         } else {
5076                                                                 val.Emit (ec);
5077                                                                 sl.Converted.Emit (ec);
5078                                                                 ec.Emit (OpCodes.Beq, sl.GetILLabel (ec));
5079                                                         }
5080                                                 }
5081                                         } else {
5082                                                 // TODO: if all the keys in the block are the same and there are
5083                                                 //       no gaps/defaults then just use a range-check.
5084                                                 if (compare_type.BuiltinType == BuiltinTypeSpec.Type.Long || compare_type.BuiltinType == BuiltinTypeSpec.Type.ULong) {
5085                                                         // TODO: optimize constant/I4 cases
5086
5087                                                         // check block range (could be > 2^31)
5088                                                         val.Emit (ec);
5089                                                         ec.EmitLong (kb.min);
5090                                                         ec.Emit (OpCodes.Blt, lbl_default);
5091
5092                                                         val.Emit (ec);
5093                                                         ec.EmitLong (kb.max);
5094                                                         ec.Emit (OpCodes.Bgt, lbl_default);
5095
5096                                                         // normalize range
5097                                                         val.Emit (ec);
5098                                                         if (kb.min != 0) {
5099                                                                 ec.EmitLong (kb.min);
5100                                                                 ec.Emit (OpCodes.Sub);
5101                                                         }
5102
5103                                                         ec.Emit (OpCodes.Conv_I4);      // assumes < 2^31 labels!
5104                                                 } else {
5105                                                         // normalize range
5106                                                         val.Emit (ec);
5107                                                         int first = (int) kb.min;
5108                                                         if (first > 0) {
5109                                                                 ec.EmitInt (first);
5110                                                                 ec.Emit (OpCodes.Sub);
5111                                                         } else if (first < 0) {
5112                                                                 ec.EmitInt (-first);
5113                                                                 ec.Emit (OpCodes.Add);
5114                                                         }
5115                                                 }
5116
5117                                                 // first, build the list of labels for the switch
5118                                                 int iKey = 0;
5119                                                 long cJumps = kb.Range;
5120                                                 Label[] switch_labels = new Label[cJumps];
5121                                                 for (int iJump = 0; iJump < cJumps; iJump++) {
5122                                                         var key = kb.label_values[iKey];
5123                                                         if (key == kb.min + iJump) {
5124                                                                 switch_labels[iJump] = labels[key].GetILLabel (ec);
5125                                                                 iKey++;
5126                                                         } else {
5127                                                                 switch_labels[iJump] = lbl_default;
5128                                                         }
5129                                                 }
5130
5131                                                 // emit the switch opcode
5132                                                 ec.Emit (OpCodes.Switch, switch_labels);
5133                                         }
5134
5135                                         // mark the default for this block
5136                                         if (range_index != 0)
5137                                                 ec.MarkLabel (lbl_default);
5138                                 }
5139
5140                                 // the last default just goes to the end
5141                                 if (ranges.Count > 0)
5142                                         ec.Emit (OpCodes.Br, lbl_default);
5143                         }
5144                 }
5145                 
5146                 public SwitchLabel FindLabel (Constant value)
5147                 {
5148                         SwitchLabel sl = null;
5149
5150                         if (string_labels != null) {
5151                                 string s = value.GetValue () as string;
5152                                 if (s == null) {
5153                                         if (case_null != null)
5154                                                 sl = case_null;
5155                                         else if (case_default != null)
5156                                                 sl = case_default;
5157                                 } else {
5158                                         string_labels.TryGetValue (s, out sl);
5159                                 }
5160                         } else {
5161                                 if (value is NullLiteral) {
5162                                         sl = case_null;
5163                                 } else {
5164                                         labels.TryGetValue (value.GetValueAsLong (), out sl);
5165                                 }
5166                         }
5167
5168                         if (sl == null || sl.SectionStart)
5169                                 return sl;
5170
5171                         //
5172                         // Always return section start, it simplifies handling of switch labels
5173                         //
5174                         for (int idx = case_labels.IndexOf (sl); ; --idx) {
5175                                 var cs = case_labels [idx];
5176                                 if (cs.SectionStart)
5177                                         return cs;
5178                         }
5179                 }
5180
5181                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
5182                 {
5183                         Expr.FlowAnalysis (fc);
5184
5185                         var prev_switch = fc.SwitchInitialDefinitiveAssignment;
5186                         var InitialDefinitiveAssignment = fc.DefiniteAssignment;
5187                         fc.SwitchInitialDefinitiveAssignment = InitialDefinitiveAssignment;
5188
5189                         block.FlowAnalysis (fc);
5190
5191                         fc.SwitchInitialDefinitiveAssignment = prev_switch;
5192
5193                         if (end_reachable_das != null) {
5194                                 var sections_das = DefiniteAssignmentBitSet.And (end_reachable_das);
5195                                 InitialDefinitiveAssignment |= sections_das;
5196                                 end_reachable_das = null;
5197                         }
5198
5199                         fc.DefiniteAssignment = InitialDefinitiveAssignment;
5200
5201                         return case_default != null && !end_reachable;
5202                 }
5203
5204                 public override bool Resolve (BlockContext ec)
5205                 {
5206                         Expr = Expr.Resolve (ec);
5207                         if (Expr == null)
5208                                 return false;
5209
5210                         //
5211                         // LAMESPEC: User conversion from non-nullable governing type has a priority
5212                         //
5213                         new_expr = SwitchGoverningType (ec, Expr, false);
5214
5215                         if (new_expr == null) {
5216                                 if (Expr.Type.IsNullableType) {
5217                                         unwrap = Nullable.Unwrap.Create (Expr, false);
5218                                         if (unwrap == null)
5219                                                 return false;
5220
5221                                         //
5222                                         // Unwrap + user conversion using non-nullable type is not allowed but user operator
5223                                         // involving nullable Expr and nullable governing type is
5224                                         //
5225                                         new_expr = SwitchGoverningType (ec, unwrap, true);
5226                                 }
5227                         }
5228
5229                         Expression switch_expr;
5230                         if (new_expr == null) {
5231                                 if (ec.Module.Compiler.Settings.Version != LanguageVersion.Experimental) {
5232                                         if (Expr.Type != InternalType.ErrorType) {
5233                                                 ec.Report.Error (151, loc,
5234                                                         "A switch expression of type `{0}' cannot be converted to an integral type, bool, char, string, enum or nullable type",
5235                                                         Expr.Type.GetSignatureForError ());
5236                                         }
5237
5238                                         return false;
5239                                 }
5240
5241                                 switch_expr = Expr;
5242                                 SwitchType = Expr.Type;
5243                         } else {
5244                                 switch_expr = new_expr;
5245                                 SwitchType = new_expr.Type;
5246                                 if (SwitchType.IsNullableType) {
5247                                         new_expr = unwrap = Nullable.Unwrap.Create (new_expr, true);
5248                                         SwitchType = Nullable.NullableInfo.GetUnderlyingType (SwitchType);
5249                                 }
5250
5251                                 if (SwitchType.BuiltinType == BuiltinTypeSpec.Type.Bool && ec.Module.Compiler.Settings.Version == LanguageVersion.ISO_1) {
5252                                         ec.Report.FeatureIsNotAvailable (ec.Module.Compiler, loc, "switch expression of boolean type");
5253                                         return false;
5254                                 }
5255
5256                                 if (block.Statements.Count == 0)
5257                                         return true;
5258
5259                                 if (SwitchType.BuiltinType == BuiltinTypeSpec.Type.String) {
5260                                         string_labels = new Dictionary<string, SwitchLabel> ();
5261                                 } else {
5262                                         labels = new Dictionary<long, SwitchLabel> ();
5263                                 }
5264                         }
5265
5266                         var constant = switch_expr as Constant;
5267
5268                         //
5269                         // Don't need extra variable for constant switch or switch with
5270                         // only default case
5271                         //
5272                         if (constant == null) {
5273                                 //
5274                                 // Store switch expression for comparison purposes
5275                                 //
5276                                 value = switch_expr as VariableReference;
5277                                 if (value == null && !HasOnlyDefaultSection ()) {
5278                                         var current_block = ec.CurrentBlock;
5279                                         ec.CurrentBlock = Block;
5280                                         // Create temporary variable inside switch scope
5281                                         value = TemporaryVariableReference.Create (SwitchType, ec.CurrentBlock, loc);
5282                                         value.Resolve (ec);
5283                                         ec.CurrentBlock = current_block;
5284                                 }
5285                         }
5286
5287                         case_labels = new List<SwitchLabel> ();
5288
5289                         Switch old_switch = ec.Switch;
5290                         ec.Switch = this;
5291                         var parent_los = ec.EnclosingLoopOrSwitch;
5292                         ec.EnclosingLoopOrSwitch = this;
5293
5294                         var ok = Statement.Resolve (ec);
5295
5296                         ec.EnclosingLoopOrSwitch = parent_los;
5297                         ec.Switch = old_switch;
5298
5299                         //
5300                         // Check if all goto cases are valid. Needs to be done after switch
5301                         // is resolved because goto can jump forward in the scope.
5302                         //
5303                         if (goto_cases != null) {
5304                                 foreach (var gc in goto_cases) {
5305                                         if (gc.Item1 == null) {
5306                                                 if (DefaultLabel == null) {
5307                                                         Goto.Error_UnknownLabel (ec, "default", loc);
5308                                                 }
5309
5310                                                 continue;
5311                                         }
5312
5313                                         var sl = FindLabel (gc.Item2);
5314                                         if (sl == null) {
5315                                                 Goto.Error_UnknownLabel (ec, "case " + gc.Item2.GetValueAsLiteral (), loc);
5316                                         } else {
5317                                                 gc.Item1.Label = sl;
5318                                         }
5319                                 }
5320                         }
5321
5322                         if (!ok)
5323                                 return false;
5324
5325                         if (constant == null && SwitchType.BuiltinType == BuiltinTypeSpec.Type.String && string_labels.Count > 6) {
5326                                 ResolveStringSwitchMap (ec);
5327                         }
5328
5329                         //
5330                         // Anonymous storey initialization has to happen before
5331                         // any generated switch dispatch
5332                         //
5333                         block.InsertStatement (0, new DispatchStatement (this));
5334
5335                         return true;
5336                 }
5337
5338                 bool HasOnlyDefaultSection ()
5339                 {
5340                         for (int i = 0; i < block.Statements.Count; ++i) {
5341                                 var s = block.Statements[i] as SwitchLabel;
5342
5343                                 if (s == null || s.IsDefault)
5344                                         continue;
5345
5346                                 return false;
5347                         }
5348
5349                         return true;
5350                 }
5351
5352                 public override Reachability MarkReachable (Reachability rc)
5353                 {
5354                         if (rc.IsUnreachable)
5355                                 return rc;
5356
5357                         base.MarkReachable (rc);
5358
5359                         block.MarkReachableScope (rc);
5360
5361                         if (block.Statements.Count == 0)
5362                                 return rc;
5363
5364                         SwitchLabel constant_label = null;
5365                         var constant = new_expr as Constant;
5366
5367                         if (constant != null) {
5368                                 constant_label = FindLabel (constant) ?? case_default;
5369                                 if (constant_label == null) {
5370                                         block.Statements.RemoveAt (0);
5371                                         return rc;
5372                                 }
5373                         }
5374
5375                         var section_rc = new Reachability ();
5376                         SwitchLabel prev_label = null;
5377
5378                         for (int i = 0; i < block.Statements.Count; ++i) {
5379                                 var s = block.Statements[i];
5380                                 var sl = s as SwitchLabel;
5381
5382                                 if (sl != null && sl.SectionStart) {
5383                                         //
5384                                         // Section is marked already via goto case
5385                                         //
5386                                         if (!sl.IsUnreachable) {
5387                                                 section_rc = new Reachability ();
5388                                                 continue;
5389                                         }
5390
5391                                         if (section_rc.IsUnreachable) {
5392                                                 //
5393                                                 // Common case. Previous label section end is unreachable as
5394                                                 // it ends with break, return, etc. For next section revert
5395                                                 // to reachable again unless we have constant switch block
5396                                                 //
5397                                                 section_rc = constant_label != null && constant_label != sl ?
5398                                                         Reachability.CreateUnreachable () :
5399                                                         new Reachability ();
5400                                         } else if (prev_label != null) {
5401                                                 //
5402                                                 // Error case as control cannot fall through from one case label
5403                                                 //
5404                                                 sl.SectionStart = false;
5405                                                 s = new MissingBreak (prev_label);
5406                                                 s.MarkReachable (rc);
5407                                                 block.Statements.Insert (i - 1, s);
5408                                                 ++i;
5409                                         } else if (constant_label != null && constant_label != sl) {
5410                                                 //
5411                                                 // Special case for the first unreachable label in constant
5412                                                 // switch block
5413                                                 //
5414                                                 section_rc = Reachability.CreateUnreachable ();
5415                                         }
5416
5417                                         prev_label = sl;
5418                                 }
5419
5420                                 section_rc = s.MarkReachable (section_rc);
5421                         }
5422
5423                         if (!section_rc.IsUnreachable && prev_label != null) {
5424                                 prev_label.SectionStart = false;
5425                                 var s = new MissingBreak (prev_label) {
5426                                         FallOut = true
5427                                 };
5428
5429                                 s.MarkReachable (rc);
5430                                 block.Statements.Add (s);
5431                         }
5432
5433                         //
5434                         // Reachability can affect parent only when all possible paths are handled but
5435                         // we still need to run reachability check on switch body to check for fall-through
5436                         //
5437                         if (case_default == null && constant_label == null)
5438                                 return rc;
5439
5440                         //
5441                         // We have at least one local exit from the switch
5442                         //
5443                         if (end_reachable)
5444                                 return rc;
5445
5446                         return Reachability.CreateUnreachable ();
5447                 }
5448
5449                 public void RegisterGotoCase (GotoCase gotoCase, Constant value)
5450                 {
5451                         if (goto_cases == null)
5452                                 goto_cases = new List<Tuple<GotoCase, Constant>> ();
5453
5454                         goto_cases.Add (Tuple.Create (gotoCase, value));
5455                 }
5456
5457                 //
5458                 // Converts string switch into string hashtable
5459                 //
5460                 void ResolveStringSwitchMap (ResolveContext ec)
5461                 {
5462                         FullNamedExpression string_dictionary_type;
5463                         if (ec.Module.PredefinedTypes.Dictionary.Define ()) {
5464                                 string_dictionary_type = new TypeExpression (
5465                                         ec.Module.PredefinedTypes.Dictionary.TypeSpec.MakeGenericType (ec,
5466                                                 new [] { ec.BuiltinTypes.String, ec.BuiltinTypes.Int }),
5467                                         loc);
5468                         } else if (ec.Module.PredefinedTypes.Hashtable.Define ()) {
5469                                 string_dictionary_type = new TypeExpression (ec.Module.PredefinedTypes.Hashtable.TypeSpec, loc);
5470                         } else {
5471                                 ec.Module.PredefinedTypes.Dictionary.Resolve ();
5472                                 return;
5473                         }
5474
5475                         var ctype = ec.CurrentMemberDefinition.Parent.PartialContainer;
5476                         Field field = new Field (ctype, string_dictionary_type,
5477                                 Modifiers.STATIC | Modifiers.PRIVATE | Modifiers.COMPILER_GENERATED,
5478                                 new MemberName (CompilerGeneratedContainer.MakeName (null, "f", "switch$map", ec.Module.CounterSwitchTypes++), loc), null);
5479                         if (!field.Define ())
5480                                 return;
5481                         ctype.AddField (field);
5482
5483                         var init = new List<Expression> ();
5484                         int counter = -1;
5485                         labels = new Dictionary<long, SwitchLabel> (string_labels.Count);
5486                         string value = null;
5487
5488                         foreach (SwitchLabel sl in case_labels) {
5489
5490                                 if (sl.SectionStart)
5491                                         labels.Add (++counter, sl);
5492
5493                                 if (sl == case_default || sl == case_null)
5494                                         continue;
5495
5496                                 value = (string) sl.Converted.GetValue ();
5497                                 var init_args = new List<Expression> (2);
5498                                 init_args.Add (new StringLiteral (ec.BuiltinTypes, value, sl.Location));
5499
5500                                 sl.Converted = new IntConstant (ec.BuiltinTypes, counter, loc);
5501                                 init_args.Add (sl.Converted);
5502
5503                                 init.Add (new CollectionElementInitializer (init_args, loc));
5504                         }
5505         
5506                         Arguments args = new Arguments (1);
5507                         args.Add (new Argument (new IntConstant (ec.BuiltinTypes, init.Count, loc)));
5508                         Expression initializer = new NewInitialize (string_dictionary_type, args,
5509                                 new CollectionOrObjectInitializers (init, loc), loc);
5510
5511                         switch_cache_field = new FieldExpr (field, loc);
5512                         string_dictionary = new SimpleAssign (switch_cache_field, initializer.Resolve (ec));
5513                 }
5514
5515                 void DoEmitStringSwitch (EmitContext ec)
5516                 {
5517                         Label l_initialized = ec.DefineLabel ();
5518
5519                         //
5520                         // Skip initialization when value is null
5521                         //
5522                         value.EmitBranchable (ec, nullLabel, false);
5523
5524                         //
5525                         // Check if string dictionary is initialized and initialize
5526                         //
5527                         switch_cache_field.EmitBranchable (ec, l_initialized, true);
5528                         using (ec.With (BuilderContext.Options.OmitDebugInfo, true)) {
5529                                 string_dictionary.EmitStatement (ec);
5530                         }
5531                         ec.MarkLabel (l_initialized);
5532
5533                         LocalTemporary string_switch_variable = new LocalTemporary (ec.BuiltinTypes.Int);
5534
5535                         ResolveContext rc = new ResolveContext (ec.MemberContext);
5536
5537                         if (switch_cache_field.Type.IsGeneric) {
5538                                 Arguments get_value_args = new Arguments (2);
5539                                 get_value_args.Add (new Argument (value));
5540                                 get_value_args.Add (new Argument (string_switch_variable, Argument.AType.Out));
5541                                 Expression get_item = new Invocation (new MemberAccess (switch_cache_field, "TryGetValue", loc), get_value_args).Resolve (rc);
5542                                 if (get_item == null)
5543                                         return;
5544
5545                                 //
5546                                 // A value was not found, go to default case
5547                                 //
5548                                 get_item.EmitBranchable (ec, defaultLabel, false);
5549                         } else {
5550                                 Arguments get_value_args = new Arguments (1);
5551                                 get_value_args.Add (new Argument (value));
5552
5553                                 Expression get_item = new ElementAccess (switch_cache_field, get_value_args, loc).Resolve (rc);
5554                                 if (get_item == null)
5555                                         return;
5556
5557                                 LocalTemporary get_item_object = new LocalTemporary (ec.BuiltinTypes.Object);
5558                                 get_item_object.EmitAssign (ec, get_item, true, false);
5559                                 ec.Emit (OpCodes.Brfalse, defaultLabel);
5560
5561                                 ExpressionStatement get_item_int = (ExpressionStatement) new SimpleAssign (string_switch_variable,
5562                                         new Cast (new TypeExpression (ec.BuiltinTypes.Int, loc), get_item_object, loc)).Resolve (rc);
5563
5564                                 get_item_int.EmitStatement (ec);
5565                                 get_item_object.Release (ec);
5566                         }
5567
5568                         EmitTableSwitch (ec, string_switch_variable);
5569                         string_switch_variable.Release (ec);
5570                 }
5571
5572                 //
5573                 // Emits switch using simple if/else comparison for small label count (4 + optional default)
5574                 //
5575                 void EmitShortSwitch (EmitContext ec)
5576                 {
5577                         MethodSpec equal_method = null;
5578                         if (SwitchType.BuiltinType == BuiltinTypeSpec.Type.String) {
5579                                 equal_method = ec.Module.PredefinedMembers.StringEqual.Resolve (loc);
5580                         }
5581
5582                         if (equal_method != null) {
5583                                 value.EmitBranchable (ec, nullLabel, false);
5584                         }
5585
5586                         for (int i = 0; i < case_labels.Count; ++i) {
5587                                 var label = case_labels [i];
5588                                 if (label == case_default || label == case_null)
5589                                         continue;
5590
5591                                 var constant = label.Converted;
5592
5593                                 if (constant == null) {
5594                                         label.Label.EmitBranchable (ec, label.GetILLabel (ec), true);
5595                                         continue;
5596                                 }
5597
5598                                 if (equal_method != null) {
5599                                         value.Emit (ec);
5600                                         constant.Emit (ec);
5601
5602                                         var call = new CallEmitter ();
5603                                         call.EmitPredefined (ec, equal_method, new Arguments (0));
5604                                         ec.Emit (OpCodes.Brtrue, label.GetILLabel (ec));
5605                                         continue;
5606                                 }
5607
5608                                 if (constant.IsZeroInteger && constant.Type.BuiltinType != BuiltinTypeSpec.Type.Long && constant.Type.BuiltinType != BuiltinTypeSpec.Type.ULong) {
5609                                         value.EmitBranchable (ec, label.GetILLabel (ec), false);
5610                                         continue;
5611                                 }
5612
5613                                 value.Emit (ec);
5614                                 constant.Emit (ec);
5615                                 ec.Emit (OpCodes.Beq, label.GetILLabel (ec));
5616                         }
5617
5618                         ec.Emit (OpCodes.Br, defaultLabel);
5619                 }
5620
5621                 void EmitDispatch (EmitContext ec)
5622                 {
5623                         if (IsPatternMatching) {
5624                                 EmitShortSwitch (ec);
5625                                 return;
5626                         }
5627
5628                         if (value == null) {
5629                                 //
5630                                 // Constant switch, we've already done the work if there is only 1 label
5631                                 // referenced
5632                                 //
5633                                 int reachable = 0;
5634                                 foreach (var sl in case_labels) {
5635                                         if (sl.IsUnreachable)
5636                                                 continue;
5637
5638                                         if (reachable++ > 0) {
5639                                                 var constant = (Constant) new_expr;
5640                                                 var constant_label = FindLabel (constant) ?? case_default;
5641
5642                                                 ec.Emit (OpCodes.Br, constant_label.GetILLabel (ec));
5643                                                 break;
5644                                         }
5645                                 }
5646
5647                                 return;
5648                         }
5649
5650                         if (string_dictionary != null) {
5651                                 DoEmitStringSwitch (ec);
5652                         } else if (case_labels.Count < 4 || string_labels != null) {
5653                                 EmitShortSwitch (ec);
5654                         } else {
5655                                 EmitTableSwitch (ec, value);
5656                         }
5657                 }
5658
5659                 protected override void DoEmit (EmitContext ec)
5660                 {
5661                         //
5662                         // Setup the codegen context
5663                         //
5664                         Label old_end = ec.LoopEnd;
5665                         Switch old_switch = ec.Switch;
5666
5667                         ec.LoopEnd = ec.DefineLabel ();
5668                         ec.Switch = this;
5669
5670                         defaultLabel = case_default == null ? ec.LoopEnd : case_default.GetILLabel (ec);
5671                         nullLabel = case_null == null ? defaultLabel : case_null.GetILLabel (ec);
5672
5673                         if (value != null) {
5674                                 ec.Mark (loc);
5675
5676                                 var switch_expr = new_expr ?? Expr;
5677                                 if (IsNullable) {
5678                                         unwrap.EmitCheck (ec);
5679                                         ec.Emit (OpCodes.Brfalse, nullLabel);
5680                                         value.EmitAssign (ec, switch_expr, false, false);
5681                                 } else if (switch_expr != value) {
5682                                         value.EmitAssign (ec, switch_expr, false, false);
5683                                 }
5684
5685
5686                                 //
5687                                 // Next statement is compiler generated we don't need extra
5688                                 // nop when we can use the statement for sequence point
5689                                 //
5690                                 ec.Mark (block.StartLocation);
5691                                 block.IsCompilerGenerated = true;
5692                         } else {
5693                                 new_expr.EmitSideEffect (ec);
5694                         }
5695
5696                         block.Emit (ec);
5697
5698                         // Restore context state. 
5699                         ec.MarkLabel (ec.LoopEnd);
5700
5701                         //
5702                         // Restore the previous context
5703                         //
5704                         ec.LoopEnd = old_end;
5705                         ec.Switch = old_switch;
5706                 }
5707
5708                 protected override void CloneTo (CloneContext clonectx, Statement t)
5709                 {
5710                         Switch target = (Switch) t;
5711
5712                         target.Expr = Expr.Clone (clonectx);
5713                         target.Statement = target.block = (ExplicitBlock) block.Clone (clonectx);
5714                 }
5715                 
5716                 public override object Accept (StructuralVisitor visitor)
5717                 {
5718                         return visitor.Visit (this);
5719                 }
5720
5721                 public override void AddEndDefiniteAssignment (FlowAnalysisContext fc)
5722                 {
5723                         if (case_default == null && !(new_expr is Constant))
5724                                 return;
5725
5726                         if (end_reachable_das == null)
5727                                 end_reachable_das = new List<DefiniteAssignmentBitSet> ();
5728
5729                         end_reachable_das.Add (fc.DefiniteAssignment);
5730                 }
5731
5732                 public override void SetEndReachable ()
5733                 {
5734                         end_reachable = true;
5735                 }
5736         }
5737
5738         // A place where execution can restart in a state machine
5739         public abstract class ResumableStatement : Statement
5740         {
5741                 bool prepared;
5742                 protected Label resume_point;
5743
5744                 public Label PrepareForEmit (EmitContext ec)
5745                 {
5746                         if (!prepared) {
5747                                 prepared = true;
5748                                 resume_point = ec.DefineLabel ();
5749                         }
5750                         return resume_point;
5751                 }
5752
5753                 public virtual Label PrepareForDispose (EmitContext ec, Label end)
5754                 {
5755                         return end;
5756                 }
5757
5758                 public virtual void EmitForDispose (EmitContext ec, LocalBuilder pc, Label end, bool have_dispatcher)
5759                 {
5760                 }
5761         }
5762
5763         public abstract class TryFinallyBlock : ExceptionStatement
5764         {
5765                 protected Statement stmt;
5766                 Label dispose_try_block;
5767                 bool prepared_for_dispose, emitted_dispose;
5768                 Method finally_host;
5769
5770                 protected TryFinallyBlock (Statement stmt, Location loc)
5771                         : base (loc)
5772                 {
5773                         this.stmt = stmt;
5774                 }
5775
5776                 #region Properties
5777
5778                 public Statement Statement {
5779                         get {
5780                                 return stmt;
5781                         }
5782                 }
5783
5784                 #endregion
5785
5786                 protected abstract void EmitTryBody (EmitContext ec);
5787                 public abstract void EmitFinallyBody (EmitContext ec);
5788
5789                 public override Label PrepareForDispose (EmitContext ec, Label end)
5790                 {
5791                         if (!prepared_for_dispose) {
5792                                 prepared_for_dispose = true;
5793                                 dispose_try_block = ec.DefineLabel ();
5794                         }
5795                         return dispose_try_block;
5796                 }
5797
5798                 protected sealed override void DoEmit (EmitContext ec)
5799                 {
5800                         EmitTryBodyPrepare (ec);
5801                         EmitTryBody (ec);
5802
5803                         bool beginFinally = EmitBeginFinallyBlock (ec);
5804
5805                         Label start_finally = ec.DefineLabel ();
5806                         if (resume_points != null && beginFinally) {
5807                                 var state_machine = (StateMachineInitializer) ec.CurrentAnonymousMethod;
5808
5809                                 ec.Emit (OpCodes.Ldloc, state_machine.SkipFinally);
5810                                 ec.Emit (OpCodes.Brfalse_S, start_finally);
5811                                 ec.Emit (OpCodes.Endfinally);
5812                         }
5813
5814                         ec.MarkLabel (start_finally);
5815
5816                         if (finally_host != null) {
5817                                 finally_host.Define ();
5818                                 finally_host.PrepareEmit ();
5819                                 finally_host.Emit ();
5820
5821                                 // Now it's safe to add, to close it properly and emit sequence points
5822                                 finally_host.Parent.AddMember (finally_host);
5823
5824                                 var ce = new CallEmitter ();
5825                                 ce.InstanceExpression = new CompilerGeneratedThis (ec.CurrentType, loc);
5826                                 ce.EmitPredefined (ec, finally_host.Spec, new Arguments (0), true);
5827                         } else {
5828                                 EmitFinallyBody (ec);
5829                         }
5830
5831                         if (beginFinally)
5832                                 ec.EndExceptionBlock ();
5833                 }
5834
5835                 public override void EmitForDispose (EmitContext ec, LocalBuilder pc, Label end, bool have_dispatcher)
5836                 {
5837                         if (emitted_dispose)
5838                                 return;
5839
5840                         emitted_dispose = true;
5841
5842                         Label end_of_try = ec.DefineLabel ();
5843
5844                         // Ensure that the only way we can get into this code is through a dispatcher
5845                         if (have_dispatcher)
5846                                 ec.Emit (OpCodes.Br, end);
5847
5848                         ec.BeginExceptionBlock ();
5849
5850                         ec.MarkLabel (dispose_try_block);
5851
5852                         Label[] labels = null;
5853                         for (int i = 0; i < resume_points.Count; ++i) {
5854                                 ResumableStatement s = resume_points[i];
5855                                 Label ret = s.PrepareForDispose (ec, end_of_try);
5856                                 if (ret.Equals (end_of_try) && labels == null)
5857                                         continue;
5858                                 if (labels == null) {
5859                                         labels = new Label[resume_points.Count];
5860                                         for (int j = 0; j < i; ++j)
5861                                                 labels[j] = end_of_try;
5862                                 }
5863                                 labels[i] = ret;
5864                         }
5865
5866                         if (labels != null) {
5867                                 int j;
5868                                 for (j = 1; j < labels.Length; ++j)
5869                                         if (!labels[0].Equals (labels[j]))
5870                                                 break;
5871                                 bool emit_dispatcher = j < labels.Length;
5872
5873                                 if (emit_dispatcher) {
5874                                         ec.Emit (OpCodes.Ldloc, pc);
5875                                         ec.EmitInt (first_resume_pc);
5876                                         ec.Emit (OpCodes.Sub);
5877                                         ec.Emit (OpCodes.Switch, labels);
5878                                 }
5879
5880                                 foreach (ResumableStatement s in resume_points)
5881                                         s.EmitForDispose (ec, pc, end_of_try, emit_dispatcher);
5882                         }
5883
5884                         ec.MarkLabel (end_of_try);
5885
5886                         ec.BeginFinallyBlock ();
5887
5888                         if (finally_host != null) {
5889                                 var ce = new CallEmitter ();
5890                                 ce.InstanceExpression = new CompilerGeneratedThis (ec.CurrentType, loc);
5891                                 ce.EmitPredefined (ec, finally_host.Spec, new Arguments (0), true);
5892                         } else {
5893                                 EmitFinallyBody (ec);
5894                         }
5895
5896                         ec.EndExceptionBlock ();
5897                 }
5898
5899                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
5900                 {
5901                         var res = stmt.FlowAnalysis (fc);
5902                         parent_try_block = null;
5903                         return res;
5904                 }
5905
5906                 protected virtual bool EmitBeginFinallyBlock (EmitContext ec)
5907                 {
5908                         ec.BeginFinallyBlock ();
5909                         return true;
5910                 }
5911
5912                 public override Reachability MarkReachable (Reachability rc)
5913                 {
5914                         base.MarkReachable (rc);
5915                         return Statement.MarkReachable (rc);
5916                 }
5917
5918                 public override bool Resolve (BlockContext bc)
5919                 {
5920                         bool ok;
5921
5922                         parent_try_block = bc.CurrentTryBlock;
5923                         bc.CurrentTryBlock = this;
5924
5925                         if (stmt is TryCatch) {
5926                                 ok = stmt.Resolve (bc);
5927                         } else {
5928                                 using (bc.Set (ResolveContext.Options.TryScope)) {
5929                                         ok = stmt.Resolve (bc);
5930                                 }
5931                         }
5932
5933                         bc.CurrentTryBlock = parent_try_block;
5934
5935                         //
5936                         // Finally block inside iterator is called from MoveNext and
5937                         // Dispose methods that means we need to lift the block into
5938                         // newly created host method to emit the body only once. The
5939                         // original block then simply calls the newly generated method.
5940                         //
5941                         if (bc.CurrentIterator != null && !bc.IsInProbingMode) {
5942                                 var b = stmt as Block;
5943                                 if (b != null && b.Explicit.HasYield) {
5944                                         finally_host = bc.CurrentIterator.CreateFinallyHost (this);
5945                                 }
5946                         }
5947
5948                         return base.Resolve (bc) && ok;
5949                 }
5950         }
5951
5952         //
5953         // Base class for blocks using exception handling
5954         //
5955         public abstract class ExceptionStatement : ResumableStatement
5956         {
5957                 protected List<ResumableStatement> resume_points;
5958                 protected int first_resume_pc;
5959                 protected ExceptionStatement parent_try_block;
5960                 protected int first_catch_resume_pc = -1;
5961
5962                 protected ExceptionStatement (Location loc)
5963                 {
5964                         this.loc = loc;
5965                 }
5966
5967                 protected virtual void EmitTryBodyPrepare (EmitContext ec)
5968                 {
5969                         StateMachineInitializer state_machine = null;
5970                         if (resume_points != null) {
5971                                 state_machine = (StateMachineInitializer) ec.CurrentAnonymousMethod;
5972
5973                                 ec.EmitInt ((int) IteratorStorey.State.Running);
5974                                 ec.Emit (OpCodes.Stloc, state_machine.CurrentPC);
5975                         }
5976
5977                         //
5978                         // The resume points in catch section when this is try-catch-finally
5979                         //
5980                         if (IsRewrittenTryCatchFinally ()) {
5981                                 ec.BeginExceptionBlock ();
5982
5983                                 if (first_catch_resume_pc >= 0) {
5984
5985                                         ec.MarkLabel (resume_point);
5986
5987                                         // For normal control flow, we want to fall-through the Switch
5988                                         // So, we use CurrentPC rather than the $PC field, and initialize it to an outside value above
5989                                         ec.Emit (OpCodes.Ldloc, state_machine.CurrentPC);
5990                                         ec.EmitInt (first_resume_pc + first_catch_resume_pc);
5991                                         ec.Emit (OpCodes.Sub);
5992
5993                                         var labels = new Label [resume_points.Count - first_catch_resume_pc];
5994                                         for (int i = 0; i < labels.Length; ++i)
5995                                                 labels [i] = resume_points [i + first_catch_resume_pc].PrepareForEmit (ec);
5996                                         ec.Emit (OpCodes.Switch, labels);
5997                                 }
5998                         }
5999
6000                         ec.BeginExceptionBlock ();
6001
6002                         //
6003                         // The resume points for try section
6004                         //
6005                         if (resume_points != null && first_catch_resume_pc != 0) {
6006                                 if (first_catch_resume_pc < 0)
6007                                         ec.MarkLabel (resume_point);
6008
6009                                 // For normal control flow, we want to fall-through the Switch
6010                                 // So, we use CurrentPC rather than the $PC field, and initialize it to an outside value above
6011                                 ec.Emit (OpCodes.Ldloc, state_machine.CurrentPC);
6012                                 ec.EmitInt (first_resume_pc);
6013                                 ec.Emit (OpCodes.Sub);
6014
6015                                 var labels = new Label [first_catch_resume_pc > 0 ? first_catch_resume_pc : resume_points.Count];
6016                                 for (int i = 0; i < labels.Length; ++i)
6017                                         labels[i] = resume_points[i].PrepareForEmit (ec);
6018                                 ec.Emit (OpCodes.Switch, labels);
6019                         }
6020                 }
6021
6022                 bool IsRewrittenTryCatchFinally ()
6023                 {
6024                         var tf = this as TryFinally;
6025                         if (tf == null)
6026                                 return false;
6027
6028                         var tc = tf.Statement as TryCatch;
6029                         if (tc == null)
6030                                 return false;
6031
6032                         return tf.FinallyBlock.HasAwait || tc.HasClauseWithAwait;
6033                 }
6034
6035                 public int AddResumePoint (ResumableStatement stmt, int pc, StateMachineInitializer stateMachine, TryCatch catchBlock)
6036                 {
6037                         if (parent_try_block != null) {
6038                                 pc = parent_try_block.AddResumePoint (this, pc, stateMachine, catchBlock);
6039                         } else {
6040                                 pc = stateMachine.AddResumePoint (this);
6041                         }
6042
6043                         if (resume_points == null) {
6044                                 resume_points = new List<ResumableStatement> ();
6045                                 first_resume_pc = pc;
6046                         }
6047
6048                         if (pc != first_resume_pc + resume_points.Count)
6049                                 throw new InternalErrorException ("missed an intervening AddResumePoint?");
6050
6051                         var tf = this as TryFinally;
6052                         if (tf != null && tf.Statement == catchBlock && first_catch_resume_pc < 0) {
6053                                 first_catch_resume_pc = resume_points.Count;
6054                         }
6055
6056                         resume_points.Add (stmt);
6057                         return pc;
6058                 }
6059         }
6060
6061         public class Lock : TryFinallyBlock
6062         {
6063                 Expression expr;
6064                 TemporaryVariableReference expr_copy;
6065                 TemporaryVariableReference lock_taken;
6066                         
6067                 public Lock (Expression expr, Statement stmt, Location loc)
6068                         : base (stmt, loc)
6069                 {
6070                         this.expr = expr;
6071                 }
6072
6073                 public Expression Expr {
6074                         get {
6075                                 return this.expr;
6076                         }
6077                 }
6078
6079                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
6080                 {
6081                         expr.FlowAnalysis (fc);
6082                         return base.DoFlowAnalysis (fc);
6083                 }
6084
6085                 public override bool Resolve (BlockContext ec)
6086                 {
6087                         expr = expr.Resolve (ec);
6088                         if (expr == null)
6089                                 return false;
6090
6091                         if (!TypeSpec.IsReferenceType (expr.Type) && expr.Type != InternalType.ErrorType) {
6092                                 ec.Report.Error (185, loc,
6093                                         "`{0}' is not a reference type as required by the lock statement",
6094                                         expr.Type.GetSignatureForError ());
6095                         }
6096
6097                         if (expr.Type.IsGenericParameter) {
6098                                 expr = Convert.ImplicitTypeParameterConversion (expr, (TypeParameterSpec)expr.Type, ec.BuiltinTypes.Object);
6099                         }
6100
6101                         VariableReference lv = expr as VariableReference;
6102                         bool locked;
6103                         if (lv != null) {
6104                                 locked = lv.IsLockedByStatement;
6105                                 lv.IsLockedByStatement = true;
6106                         } else {
6107                                 lv = null;
6108                                 locked = false;
6109                         }
6110
6111                         //
6112                         // Have to keep original lock value around to unlock same location
6113                         // in the case of original value has changed or is null
6114                         //
6115                         expr_copy = TemporaryVariableReference.Create (ec.BuiltinTypes.Object, ec.CurrentBlock, loc);
6116                         expr_copy.Resolve (ec);
6117
6118                         //
6119                         // Ensure Monitor methods are available
6120                         //
6121                         if (ResolvePredefinedMethods (ec) > 1) {
6122                                 lock_taken = TemporaryVariableReference.Create (ec.BuiltinTypes.Bool, ec.CurrentBlock, loc);
6123                                 lock_taken.Resolve (ec);
6124                         }
6125
6126                         using (ec.Set (ResolveContext.Options.LockScope)) {
6127                                 base.Resolve (ec);
6128                         }
6129
6130                         if (lv != null) {
6131                                 lv.IsLockedByStatement = locked;
6132                         }
6133
6134                         return true;
6135                 }
6136                 
6137                 protected override void EmitTryBodyPrepare (EmitContext ec)
6138                 {
6139                         expr_copy.EmitAssign (ec, expr);
6140
6141                         if (lock_taken != null) {
6142                                 //
6143                                 // Initialize ref variable
6144                                 //
6145                                 lock_taken.EmitAssign (ec, new BoolLiteral (ec.BuiltinTypes, false, loc));
6146                         } else {
6147                                 //
6148                                 // Monitor.Enter (expr_copy)
6149                                 //
6150                                 expr_copy.Emit (ec);
6151                                 ec.Emit (OpCodes.Call, ec.Module.PredefinedMembers.MonitorEnter.Get ());
6152                         }
6153
6154                         base.EmitTryBodyPrepare (ec);
6155                 }
6156
6157                 protected override void EmitTryBody (EmitContext ec)
6158                 {
6159                         //
6160                         // Monitor.Enter (expr_copy, ref lock_taken)
6161                         //
6162                         if (lock_taken != null) {
6163                                 expr_copy.Emit (ec);
6164                                 lock_taken.LocalInfo.CreateBuilder (ec);
6165                                 lock_taken.AddressOf (ec, AddressOp.Load);
6166                                 ec.Emit (OpCodes.Call, ec.Module.PredefinedMembers.MonitorEnter_v4.Get ());
6167                         }
6168
6169                         Statement.Emit (ec);
6170                 }
6171
6172                 public override void EmitFinallyBody (EmitContext ec)
6173                 {
6174                         //
6175                         // if (lock_taken) Monitor.Exit (expr_copy)
6176                         //
6177                         Label skip = ec.DefineLabel ();
6178
6179                         if (lock_taken != null) {
6180                                 lock_taken.Emit (ec);
6181                                 ec.Emit (OpCodes.Brfalse_S, skip);
6182                         }
6183
6184                         expr_copy.Emit (ec);
6185                         var m = ec.Module.PredefinedMembers.MonitorExit.Resolve (loc);
6186                         if (m != null)
6187                                 ec.Emit (OpCodes.Call, m);
6188
6189                         ec.MarkLabel (skip);
6190                 }
6191
6192                 int ResolvePredefinedMethods (ResolveContext rc)
6193                 {
6194                         // Try 4.0 Monitor.Enter (object, ref bool) overload first
6195                         var m = rc.Module.PredefinedMembers.MonitorEnter_v4.Get ();
6196                         if (m != null)
6197                                 return 4;
6198
6199                         m = rc.Module.PredefinedMembers.MonitorEnter.Get ();
6200                         if (m != null)
6201                                 return 1;
6202
6203                         rc.Module.PredefinedMembers.MonitorEnter_v4.Resolve (loc);
6204                         return 0;
6205                 }
6206
6207                 protected override void CloneTo (CloneContext clonectx, Statement t)
6208                 {
6209                         Lock target = (Lock) t;
6210
6211                         target.expr = expr.Clone (clonectx);
6212                         target.stmt = Statement.Clone (clonectx);
6213                 }
6214                 
6215                 public override object Accept (StructuralVisitor visitor)
6216                 {
6217                         return visitor.Visit (this);
6218                 }
6219
6220         }
6221
6222         public class Unchecked : Statement {
6223                 public Block Block;
6224                 
6225                 public Unchecked (Block b, Location loc)
6226                 {
6227                         Block = b;
6228                         b.Unchecked = true;
6229                         this.loc = loc;
6230                 }
6231
6232                 public override bool Resolve (BlockContext ec)
6233                 {
6234                         using (ec.With (ResolveContext.Options.AllCheckStateFlags, false))
6235                                 return Block.Resolve (ec);
6236                 }
6237                 
6238                 protected override void DoEmit (EmitContext ec)
6239                 {
6240                         using (ec.With (EmitContext.Options.CheckedScope, false))
6241                                 Block.Emit (ec);
6242                 }
6243
6244                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
6245                 {
6246                         return Block.FlowAnalysis (fc);
6247                 }
6248
6249                 public override Reachability MarkReachable (Reachability rc)
6250                 {
6251                         base.MarkReachable (rc);
6252                         return Block.MarkReachable (rc);
6253                 }
6254
6255                 protected override void CloneTo (CloneContext clonectx, Statement t)
6256                 {
6257                         Unchecked target = (Unchecked) t;
6258
6259                         target.Block = clonectx.LookupBlock (Block);
6260                 }
6261                 
6262                 public override object Accept (StructuralVisitor visitor)
6263                 {
6264                         return visitor.Visit (this);
6265                 }
6266         }
6267
6268         public class Checked : Statement {
6269                 public Block Block;
6270                 
6271                 public Checked (Block b, Location loc)
6272                 {
6273                         Block = b;
6274                         b.Unchecked = false;
6275                         this.loc = loc;
6276                 }
6277
6278                 public override bool Resolve (BlockContext ec)
6279                 {
6280                         using (ec.With (ResolveContext.Options.AllCheckStateFlags, true))
6281                                 return Block.Resolve (ec);
6282                 }
6283
6284                 protected override void DoEmit (EmitContext ec)
6285                 {
6286                         using (ec.With (EmitContext.Options.CheckedScope, true))
6287                                 Block.Emit (ec);
6288                 }
6289
6290                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
6291                 {
6292                         return Block.FlowAnalysis (fc);
6293                 }
6294
6295                 public override Reachability MarkReachable (Reachability rc)
6296                 {
6297                         base.MarkReachable (rc);
6298                         return Block.MarkReachable (rc);
6299                 }
6300
6301                 protected override void CloneTo (CloneContext clonectx, Statement t)
6302                 {
6303                         Checked target = (Checked) t;
6304
6305                         target.Block = clonectx.LookupBlock (Block);
6306                 }
6307                 
6308                 public override object Accept (StructuralVisitor visitor)
6309                 {
6310                         return visitor.Visit (this);
6311                 }
6312         }
6313
6314         public class Unsafe : Statement {
6315                 public Block Block;
6316
6317                 public Unsafe (Block b, Location loc)
6318                 {
6319                         Block = b;
6320                         Block.Unsafe = true;
6321                         this.loc = loc;
6322                 }
6323
6324                 public override bool Resolve (BlockContext ec)
6325                 {
6326                         if (ec.CurrentIterator != null)
6327                                 ec.Report.Error (1629, loc, "Unsafe code may not appear in iterators");
6328
6329                         using (ec.Set (ResolveContext.Options.UnsafeScope))
6330                                 return Block.Resolve (ec);
6331                 }
6332                 
6333                 protected override void DoEmit (EmitContext ec)
6334                 {
6335                         Block.Emit (ec);
6336                 }
6337
6338                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
6339                 {
6340                         return Block.FlowAnalysis (fc);
6341                 }
6342
6343                 public override Reachability MarkReachable (Reachability rc)
6344                 {
6345                         base.MarkReachable (rc);
6346                         return Block.MarkReachable (rc);
6347                 }
6348
6349                 protected override void CloneTo (CloneContext clonectx, Statement t)
6350                 {
6351                         Unsafe target = (Unsafe) t;
6352
6353                         target.Block = clonectx.LookupBlock (Block);
6354                 }
6355                 
6356                 public override object Accept (StructuralVisitor visitor)
6357                 {
6358                         return visitor.Visit (this);
6359                 }
6360         }
6361
6362         // 
6363         // Fixed statement
6364         //
6365         public class Fixed : Statement
6366         {
6367                 abstract class Emitter : ShimExpression
6368                 {
6369                         protected LocalVariable vi;
6370
6371                         protected Emitter (Expression expr, LocalVariable li)
6372                                 : base (expr)
6373                         {
6374                                 vi = li;
6375                         }
6376
6377                         public abstract void EmitExit (EmitContext ec);
6378
6379                         public override void FlowAnalysis (FlowAnalysisContext fc)
6380                         {
6381                                 expr.FlowAnalysis (fc);
6382                         }
6383                 }
6384
6385                 sealed class ExpressionEmitter : Emitter {
6386                         public ExpressionEmitter (Expression converted, LocalVariable li)
6387                                 : base (converted, li)
6388                         {
6389                         }
6390
6391                         protected override Expression DoResolve (ResolveContext rc)
6392                         {
6393                                 throw new NotImplementedException ();
6394                         }
6395
6396                         public override void Emit (EmitContext ec) {
6397                                 //
6398                                 // Store pointer in pinned location
6399                                 //
6400                                 expr.Emit (ec);
6401                                 vi.EmitAssign (ec);
6402                         }
6403
6404                         public override void EmitExit (EmitContext ec)
6405                         {
6406                                 ec.EmitInt (0);
6407                                 ec.Emit (OpCodes.Conv_U);
6408                                 vi.EmitAssign (ec);
6409                         }
6410                 }
6411
6412                 class StringEmitter : Emitter
6413                 {
6414                         LocalVariable pinned_string;
6415
6416                         public StringEmitter (Expression expr, LocalVariable li)
6417                                 : base (expr, li)
6418                         {
6419                         }
6420
6421                         protected override Expression DoResolve (ResolveContext rc)
6422                         {
6423                                 pinned_string = new LocalVariable (vi.Block, "$pinned",
6424                                         LocalVariable.Flags.FixedVariable | LocalVariable.Flags.CompilerGenerated | LocalVariable.Flags.Used,
6425                                         vi.Location);
6426                                 pinned_string.Type = rc.BuiltinTypes.String;
6427                                 vi.IsFixed = false;
6428
6429                                 eclass = ExprClass.Variable;
6430                                 type = rc.BuiltinTypes.Int;
6431                                 return this;
6432                         }
6433
6434                         public override void Emit (EmitContext ec)
6435                         {
6436                                 pinned_string.CreateBuilder (ec);
6437
6438                                 expr.Emit (ec);
6439                                 pinned_string.EmitAssign (ec);
6440
6441                                 // TODO: Should use Binary::Add
6442                                 pinned_string.Emit (ec);
6443                                 ec.Emit (OpCodes.Conv_I);
6444
6445                                 var m = ec.Module.PredefinedMembers.RuntimeHelpersOffsetToStringData.Resolve (loc);
6446                                 if (m == null)
6447                                         return;
6448
6449                                 PropertyExpr pe = new PropertyExpr (m, pinned_string.Location);
6450                                 //pe.InstanceExpression = pinned_string;
6451                                 pe.Resolve (new ResolveContext (ec.MemberContext)).Emit (ec);
6452
6453                                 ec.Emit (OpCodes.Add);
6454                                 vi.EmitAssign (ec);
6455                         }
6456
6457                         public override void EmitExit (EmitContext ec)
6458                         {
6459                                 ec.EmitNull ();
6460                                 pinned_string.EmitAssign (ec);
6461                         }
6462                 }
6463
6464                 public class VariableDeclaration : BlockVariable
6465                 {
6466                         public VariableDeclaration (FullNamedExpression type, LocalVariable li)
6467                                 : base (type, li)
6468                         {
6469                         }
6470
6471                         protected override Expression ResolveInitializer (BlockContext bc, LocalVariable li, Expression initializer)
6472                         {
6473                                 if (!Variable.Type.IsPointer && li == Variable) {
6474                                         bc.Report.Error (209, TypeExpression.Location,
6475                                                 "The type of locals declared in a fixed statement must be a pointer type");
6476                                         return null;
6477                                 }
6478
6479                                 var res = initializer.Resolve (bc);
6480                                 if (res == null)
6481                                         return null;
6482
6483                                 //
6484                                 // Case 1: Array
6485                                 //
6486                                 var ac = res.Type as ArrayContainer;
6487                                 if (ac != null) {
6488                                         TypeSpec array_type = ac.Element;
6489
6490                                         //
6491                                         // Provided that array_type is unmanaged,
6492                                         //
6493                                         if (!TypeManager.VerifyUnmanaged (bc.Module, array_type, loc))
6494                                                 return null;
6495
6496                                         Expression res_init;
6497                                         if (ExpressionAnalyzer.IsInexpensiveLoad (res)) {
6498                                                 res_init = res;
6499                                         } else {
6500                                                 var expr_variable = LocalVariable.CreateCompilerGenerated (ac, bc.CurrentBlock, loc);
6501                                                 res_init = new CompilerAssign (expr_variable.CreateReferenceExpression (bc, loc), res, loc);
6502                                                 res = expr_variable.CreateReferenceExpression (bc, loc);
6503                                         }
6504
6505                                         //
6506                                         // and T* is implicitly convertible to the
6507                                         // pointer type given in the fixed statement.
6508                                         //
6509                                         ArrayPtr array_ptr = new ArrayPtr (res, array_type, loc);
6510
6511                                         Expression converted = Convert.ImplicitConversionRequired (bc, array_ptr.Resolve (bc), li.Type, loc);
6512                                         if (converted == null)
6513                                                 return null;
6514
6515                                         //
6516                                         // fixed (T* e_ptr = (e == null || e.Length == 0) ? null : converted [0])
6517                                         //
6518                                         converted = new Conditional (new BooleanExpression (new Binary (Binary.Operator.LogicalOr,
6519                                                 new Binary (Binary.Operator.Equality, res_init, new NullLiteral (loc)),
6520                                                 new Binary (Binary.Operator.Equality, new MemberAccess (res, "Length"), new IntConstant (bc.BuiltinTypes, 0, loc)))),
6521                                                         new NullLiteral (loc),
6522                                                         converted, loc);
6523
6524                                         converted = converted.Resolve (bc);
6525
6526                                         return new ExpressionEmitter (converted, li);
6527                                 }
6528
6529                                 //
6530                                 // Case 2: string
6531                                 //
6532                                 if (res.Type.BuiltinType == BuiltinTypeSpec.Type.String) {
6533                                         return new StringEmitter (res, li).Resolve (bc);
6534                                 }
6535
6536                                 // Case 3: fixed buffer
6537                                 if (res is FixedBufferPtr) {
6538                                         return new ExpressionEmitter (res, li);
6539                                 }
6540
6541                                 bool already_fixed = true;
6542
6543                                 //
6544                                 // Case 4: & object.
6545                                 //
6546                                 Unary u = res as Unary;
6547                                 if (u != null) {
6548                                         if (u.Oper == Unary.Operator.AddressOf) {
6549                                                 IVariableReference vr = u.Expr as IVariableReference;
6550                                                 if (vr == null || !vr.IsFixed) {
6551                                                         already_fixed = false;
6552                                                 }
6553                                         }
6554                                 } else if (initializer is Cast) {
6555                                         bc.Report.Error (254, initializer.Location, "The right hand side of a fixed statement assignment may not be a cast expression");
6556                                         return null;
6557                                 }
6558
6559                                 if (already_fixed) {
6560                                         bc.Report.Error (213, loc, "You cannot use the fixed statement to take the address of an already fixed expression");
6561                                 }
6562
6563                                 res = Convert.ImplicitConversionRequired (bc, res, li.Type, loc);
6564                                 return new ExpressionEmitter (res, li);
6565                         }
6566                 }
6567
6568
6569                 VariableDeclaration decl;
6570                 Statement statement;
6571                 bool has_ret;
6572
6573                 public Fixed (VariableDeclaration decl, Statement stmt, Location l)
6574                 {
6575                         this.decl = decl;
6576                         statement = stmt;
6577                         loc = l;
6578                 }
6579
6580                 #region Properties
6581
6582                 public Statement Statement {
6583                         get {
6584                                 return statement;
6585                         }
6586                 }
6587
6588                 public BlockVariable Variables {
6589                         get {
6590                                 return decl;
6591                         }
6592                 }
6593
6594                 #endregion
6595
6596                 public override bool Resolve (BlockContext bc)
6597                 {
6598                         using (bc.Set (ResolveContext.Options.FixedInitializerScope)) {
6599                                 if (!decl.Resolve (bc))
6600                                         return false;
6601                         }
6602
6603                         return statement.Resolve (bc);
6604                 }
6605
6606                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
6607                 {
6608                         decl.FlowAnalysis (fc);
6609                         return statement.FlowAnalysis (fc);
6610                 }
6611                 
6612                 protected override void DoEmit (EmitContext ec)
6613                 {
6614                         decl.Variable.CreateBuilder (ec);
6615                         decl.Initializer.Emit (ec);
6616                         if (decl.Declarators != null) {
6617                                 foreach (var d in decl.Declarators) {
6618                                         d.Variable.CreateBuilder (ec);
6619                                         d.Initializer.Emit (ec);
6620                                 }
6621                         }
6622
6623                         statement.Emit (ec);
6624
6625                         if (has_ret)
6626                                 return;
6627
6628                         //
6629                         // Clear the pinned variable
6630                         //
6631                         ((Emitter) decl.Initializer).EmitExit (ec);
6632                         if (decl.Declarators != null) {
6633                                 foreach (var d in decl.Declarators) {
6634                                         ((Emitter)d.Initializer).EmitExit (ec);
6635                                 }
6636                         }
6637                 }
6638
6639                 public override Reachability MarkReachable (Reachability rc)
6640                 {
6641                         base.MarkReachable (rc);
6642
6643                         decl.MarkReachable (rc);
6644
6645                         rc = statement.MarkReachable (rc);
6646
6647                         // TODO: What if there is local exit?
6648                         has_ret = rc.IsUnreachable;
6649                         return rc;
6650                 }
6651
6652                 protected override void CloneTo (CloneContext clonectx, Statement t)
6653                 {
6654                         Fixed target = (Fixed) t;
6655
6656                         target.decl = (VariableDeclaration) decl.Clone (clonectx);
6657                         target.statement = statement.Clone (clonectx);
6658                 }
6659                 
6660                 public override object Accept (StructuralVisitor visitor)
6661                 {
6662                         return visitor.Visit (this);
6663                 }
6664         }
6665
6666         public class Catch : Statement
6667         {
6668                 class CatchVariableStore : Statement
6669                 {
6670                         readonly Catch ctch;
6671
6672                         public CatchVariableStore (Catch ctch)
6673                         {
6674                                 this.ctch = ctch;
6675                         }
6676
6677                         protected override void CloneTo (CloneContext clonectx, Statement target)
6678                         {
6679                         }
6680
6681                         protected override void DoEmit (EmitContext ec)
6682                         {
6683                                 // Emits catch variable debug information inside correct block
6684                                 ctch.EmitCatchVariableStore (ec);
6685                         }
6686
6687                         protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
6688                         {
6689                                 return true;
6690                         }
6691                 }
6692
6693                 class FilterStatement : Statement
6694                 {
6695                         readonly Catch ctch;
6696
6697                         public FilterStatement (Catch ctch)
6698                         {
6699                                 this.ctch = ctch;
6700                         }
6701
6702                         protected override void CloneTo (CloneContext clonectx, Statement target)
6703                         {
6704                         }
6705
6706                         protected override void DoEmit (EmitContext ec)
6707                         {
6708                                 if (ctch.li != null) {
6709                                         if (ctch.hoisted_temp != null)
6710                                                 ctch.hoisted_temp.Emit (ec);
6711                                         else
6712                                                 ctch.li.Emit (ec);
6713
6714                                         if (!ctch.IsGeneral && ctch.type.Kind == MemberKind.TypeParameter)
6715                                                 ec.Emit (OpCodes.Box, ctch.type);
6716                                 }
6717
6718                                 var expr_start = ec.DefineLabel ();
6719                                 var end = ec.DefineLabel ();
6720
6721                                 ec.Emit (OpCodes.Brtrue_S, expr_start);
6722                                 ec.EmitInt (0);
6723                                 ec.Emit (OpCodes.Br, end);
6724                                 ec.MarkLabel (expr_start);
6725
6726                                 ctch.Filter.Emit (ec);
6727
6728                                 ec.MarkLabel (end);
6729                                 ec.Emit (OpCodes.Endfilter);
6730                                 ec.BeginFilterHandler ();
6731                                 ec.Emit (OpCodes.Pop);
6732                         }
6733
6734                         protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
6735                         {
6736                                 ctch.Filter.FlowAnalysis (fc);
6737                                 return true;
6738                         }
6739
6740                         public override bool Resolve (BlockContext bc)
6741                         {
6742                                 ctch.Filter = ctch.Filter.Resolve (bc);
6743
6744                                 if (ctch.Filter != null) {
6745                                         if (ctch.Filter.ContainsEmitWithAwait ()) {
6746                                                 bc.Report.Error (7094, ctch.Filter.Location, "The `await' operator cannot be used in the filter expression of a catch clause");
6747                                         }
6748
6749                                         var c = ctch.Filter as Constant;
6750                                         if (c != null && !c.IsDefaultValue) {
6751                                                 bc.Report.Warning (7095, 1, ctch.Filter.Location, "Exception filter expression is a constant");
6752                                         }
6753                                 }
6754
6755                                 return true;
6756                         }
6757                 }
6758
6759                 ExplicitBlock block;
6760                 LocalVariable li;
6761                 FullNamedExpression type_expr;
6762                 CompilerAssign assign;
6763                 TypeSpec type;
6764                 LocalTemporary hoisted_temp;
6765
6766                 public Catch (ExplicitBlock block, Location loc)
6767                 {
6768                         this.block = block;
6769                         this.loc = loc;
6770                 }
6771
6772                 #region Properties
6773
6774                 public ExplicitBlock Block {
6775                         get {
6776                                 return block;
6777                         }
6778                 }
6779
6780                 public TypeSpec CatchType {
6781                         get {
6782                                 return type;
6783                         }
6784                 }
6785
6786                 public Expression Filter {
6787                         get; set;
6788                 }
6789
6790                 public bool IsGeneral {
6791                         get {
6792                                 return type_expr == null;
6793                         }
6794                 }
6795
6796                 public FullNamedExpression TypeExpression {
6797                         get {
6798                                 return type_expr;
6799                         }
6800                         set {
6801                                 type_expr = value;
6802                         }
6803                 }
6804
6805                 public LocalVariable Variable {
6806                         get {
6807                                 return li;
6808                         }
6809                         set {
6810                                 li = value;
6811                         }
6812                 }
6813
6814                 #endregion
6815
6816                 protected override void DoEmit (EmitContext ec)
6817                 {
6818                         if (Filter != null) {
6819                                 ec.BeginExceptionFilterBlock ();
6820                                 ec.Emit (OpCodes.Isinst, IsGeneral ? ec.BuiltinTypes.Object : CatchType);
6821
6822                                 if (Block.HasAwait) {
6823                                         Block.EmitScopeInitialization (ec);
6824                                 } else {
6825                                         Block.Emit (ec);
6826                                 }
6827
6828                                 return;
6829                         }
6830
6831                         if (IsGeneral)
6832                                 ec.BeginCatchBlock (ec.BuiltinTypes.Object);
6833                         else
6834                                 ec.BeginCatchBlock (CatchType);
6835
6836                         if (li == null)
6837                                 ec.Emit (OpCodes.Pop);
6838
6839                         if (Block.HasAwait) {
6840                                 if (li != null)
6841                                         EmitCatchVariableStore (ec);
6842                         } else {
6843                                 Block.Emit (ec);
6844                         }
6845                 }
6846
6847                 void EmitCatchVariableStore (EmitContext ec)
6848                 {
6849                         li.CreateBuilder (ec);
6850
6851                         //
6852                         // For hoisted catch variable we have to use a temporary local variable
6853                         // for captured variable initialization during storey setup because variable
6854                         // needs to be on the stack after storey instance for stfld operation
6855                         //
6856                         if (li.HoistedVariant != null) {
6857                                 hoisted_temp = new LocalTemporary (li.Type);
6858                                 hoisted_temp.Store (ec);
6859
6860                                 // switch to assignment from temporary variable and not from top of the stack
6861                                 assign.UpdateSource (hoisted_temp);
6862                         }
6863                 }
6864
6865                 public override bool Resolve (BlockContext bc)
6866                 {
6867                         using (bc.Set (ResolveContext.Options.CatchScope)) {
6868                                 if (type_expr == null) {
6869                                         if (CreateExceptionVariable (bc.Module.Compiler.BuiltinTypes.Object)) {
6870                                                 if (!block.HasAwait || Filter != null)
6871                                                         block.AddScopeStatement (new CatchVariableStore (this));
6872
6873                                                 Expression source = new EmptyExpression (li.Type);
6874                                                 assign = new CompilerAssign (new LocalVariableReference (li, Location.Null), source, Location.Null);
6875                                                 Block.AddScopeStatement (new StatementExpression (assign, Location.Null));
6876                                         }
6877                                 } else {
6878                                         type = type_expr.ResolveAsType (bc);
6879                                         if (type == null)
6880                                                 return false;
6881
6882                                         if (li == null)
6883                                                 CreateExceptionVariable (type);
6884
6885                                         if (type.BuiltinType != BuiltinTypeSpec.Type.Exception && !TypeSpec.IsBaseClass (type, bc.BuiltinTypes.Exception, false)) {
6886                                                 bc.Report.Error (155, loc, "The type caught or thrown must be derived from System.Exception");
6887                                         } else if (li != null) {
6888                                                 li.Type = type;
6889                                                 li.PrepareAssignmentAnalysis (bc);
6890
6891                                                 // source variable is at the top of the stack
6892                                                 Expression source = new EmptyExpression (li.Type);
6893                                                 if (li.Type.IsGenericParameter)
6894                                                         source = new UnboxCast (source, li.Type);
6895
6896                                                 if (!block.HasAwait || Filter != null)
6897                                                         block.AddScopeStatement (new CatchVariableStore (this));
6898
6899                                                 //
6900                                                 // Uses Location.Null to hide from symbol file
6901                                                 //
6902                                                 assign = new CompilerAssign (new LocalVariableReference (li, Location.Null), source, Location.Null);
6903                                                 Block.AddScopeStatement (new StatementExpression (assign, Location.Null));
6904                                         }
6905                                 }
6906
6907                                 if (Filter != null) {
6908                                         Block.AddScopeStatement (new FilterStatement (this));
6909                                 }
6910
6911                                 Block.SetCatchBlock ();
6912                                 return Block.Resolve (bc);
6913                         }
6914                 }
6915
6916                 bool CreateExceptionVariable (TypeSpec type)
6917                 {
6918                         if (!Block.HasAwait)
6919                                 return false;
6920
6921                         // TODO: Scan the block for rethrow expression
6922                         //if (!Block.HasRethrow)
6923                         //      return;
6924
6925                         li = LocalVariable.CreateCompilerGenerated (type, block, Location.Null);
6926                         return true;
6927                 }
6928
6929                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
6930                 {
6931                         if (li != null && !li.IsCompilerGenerated) {
6932                                 fc.SetVariableAssigned (li.VariableInfo, true);
6933                         }
6934
6935                         return block.FlowAnalysis (fc);
6936                 }
6937
6938                 public override Reachability MarkReachable (Reachability rc)
6939                 {
6940                         base.MarkReachable (rc);
6941
6942                         var c = Filter as Constant;
6943                         if (c != null && c.IsDefaultValue)
6944                                 return Reachability.CreateUnreachable ();
6945
6946                         return block.MarkReachable (rc);
6947                 }
6948
6949                 protected override void CloneTo (CloneContext clonectx, Statement t)
6950                 {
6951                         Catch target = (Catch) t;
6952
6953                         if (type_expr != null)
6954                                 target.type_expr = (FullNamedExpression) type_expr.Clone (clonectx);
6955
6956                         if (Filter != null)
6957                                 target.Filter = Filter.Clone (clonectx);
6958
6959                         target.block = (ExplicitBlock) clonectx.LookupBlock (block);
6960                 }
6961         }
6962
6963         public class TryFinally : TryFinallyBlock
6964         {
6965                 ExplicitBlock fini;
6966                 List<DefiniteAssignmentBitSet> try_exit_dat;
6967                 List<Label> redirected_jumps;
6968                 Label? start_fin_label;
6969
6970                 public TryFinally (Statement stmt, ExplicitBlock fini, Location loc)
6971                          : base (stmt, loc)
6972                 {
6973                         this.fini = fini;
6974                 }
6975
6976                 public ExplicitBlock FinallyBlock {
6977                         get {
6978                                 return fini;
6979                         }
6980                 }
6981
6982                 public void RegisterForControlExitCheck (DefiniteAssignmentBitSet vector)
6983                 {
6984                         if (try_exit_dat == null)
6985                                 try_exit_dat = new List<DefiniteAssignmentBitSet> ();
6986
6987                         try_exit_dat.Add (vector);
6988                 }
6989
6990                 public override bool Resolve (BlockContext bc)
6991                 {
6992                         bool ok = base.Resolve (bc);
6993
6994                         fini.SetFinallyBlock ();
6995                         using (bc.Set (ResolveContext.Options.FinallyScope)) {
6996                                 ok &= fini.Resolve (bc);
6997                         }
6998
6999                         return ok;
7000                 }
7001
7002                 protected override void EmitTryBody (EmitContext ec)
7003                 {
7004                         if (fini.HasAwait) {
7005                                 if (ec.TryFinallyUnwind == null)
7006                                         ec.TryFinallyUnwind = new List<TryFinally> ();
7007
7008                                 ec.TryFinallyUnwind.Add (this);
7009                                 stmt.Emit (ec);
7010
7011                                 if (first_catch_resume_pc < 0 && stmt is TryCatch)
7012                                         ec.EndExceptionBlock ();
7013
7014                                 ec.TryFinallyUnwind.Remove (this);
7015
7016                                 if (start_fin_label != null)
7017                                         ec.MarkLabel (start_fin_label.Value);
7018
7019                                 return;
7020                         }
7021
7022                         stmt.Emit (ec);
7023                 }
7024
7025                 protected override bool EmitBeginFinallyBlock (EmitContext ec)
7026                 {
7027                         if (fini.HasAwait)
7028                                 return false;
7029
7030                         return base.EmitBeginFinallyBlock (ec);
7031                 }
7032
7033                 public override void EmitFinallyBody (EmitContext ec)
7034                 {
7035                         if (!fini.HasAwait) {
7036                                 fini.Emit (ec);
7037                                 return;
7038                         }
7039
7040                         //
7041                         // Emits catch block like
7042                         //
7043                         // catch (object temp) {
7044                         //      this.exception_field = temp;
7045                         // }
7046                         //
7047                         var type = ec.BuiltinTypes.Object;
7048                         ec.BeginCatchBlock (type);
7049
7050                         var temp = ec.GetTemporaryLocal (type);
7051                         ec.Emit (OpCodes.Stloc, temp);
7052
7053                         var exception_field = ec.GetTemporaryField (type);
7054                         exception_field.AutomaticallyReuse = false;
7055                         ec.EmitThis ();
7056                         ec.Emit (OpCodes.Ldloc, temp);
7057                         exception_field.EmitAssignFromStack (ec);
7058
7059                         ec.EndExceptionBlock ();
7060
7061                         ec.FreeTemporaryLocal (temp, type);
7062
7063                         fini.Emit (ec);
7064
7065                         //
7066                         // Emits exception rethrow
7067                         //
7068                         // if (this.exception_field != null)
7069                         //      throw this.exception_field;
7070                         //
7071                         exception_field.Emit (ec);
7072                         var skip_throw = ec.DefineLabel ();
7073                         ec.Emit (OpCodes.Brfalse_S, skip_throw);
7074                         exception_field.Emit (ec);
7075                         ec.Emit (OpCodes.Throw);
7076                         ec.MarkLabel (skip_throw);
7077
7078                         exception_field.PrepareCleanup (ec);
7079
7080                         EmitUnwindFinallyTable (ec);
7081                 }
7082
7083                 bool IsParentBlock (Block block)
7084                 {
7085                         for (Block b = fini; b != null; b = b.Parent) {
7086                                 if (b == block)
7087                                         return true;
7088                         }
7089
7090                         return false;
7091                 }
7092
7093                 public static Label EmitRedirectedJump (EmitContext ec, AsyncInitializer initializer, Label label, Block labelBlock)
7094                 {
7095                         int idx;
7096                         if (labelBlock != null) {
7097                                 for (idx = ec.TryFinallyUnwind.Count; idx != 0; --idx) {
7098                                         var fin = ec.TryFinallyUnwind [idx - 1];
7099                                         if (!fin.IsParentBlock (labelBlock))
7100                                                 break;
7101                                 }
7102                         } else {
7103                                 idx = 0;
7104                         }
7105
7106                         bool set_return_state = true;
7107
7108                         for (; idx < ec.TryFinallyUnwind.Count; ++idx) {
7109                                 var fin = ec.TryFinallyUnwind [idx];
7110                                 if (labelBlock != null && !fin.IsParentBlock (labelBlock))
7111                                         break;
7112
7113                                 fin.EmitRedirectedExit (ec, label, initializer, set_return_state);
7114                                 set_return_state = false;
7115
7116                                 if (fin.start_fin_label == null) {
7117                                         fin.start_fin_label = ec.DefineLabel ();
7118                                 }
7119
7120                                 label = fin.start_fin_label.Value;
7121                         }
7122
7123                         return label;
7124                 }
7125
7126                 public static Label EmitRedirectedReturn (EmitContext ec, AsyncInitializer initializer)
7127                 {
7128                         return EmitRedirectedJump (ec, initializer, initializer.BodyEnd, null);
7129                 }
7130
7131                 void EmitRedirectedExit (EmitContext ec, Label label, AsyncInitializer initializer, bool setReturnState)
7132                 {
7133                         if (redirected_jumps == null) {
7134                                 redirected_jumps = new List<Label> ();
7135
7136                                 // Add fallthrough label
7137                                 redirected_jumps.Add (ec.DefineLabel ());
7138
7139                                 if (setReturnState)
7140                                         initializer.HoistedReturnState = ec.GetTemporaryField (ec.Module.Compiler.BuiltinTypes.Int, true);
7141                         }
7142
7143                         int index = redirected_jumps.IndexOf (label);
7144                         if (index < 0) {
7145                                 redirected_jumps.Add (label);
7146                                 index = redirected_jumps.Count - 1;
7147                         }
7148
7149                         //
7150                         // Indicates we have captured exit jump
7151                         //
7152                         if (setReturnState) {
7153                                 var value = new IntConstant (initializer.HoistedReturnState.Type, index, Location.Null);
7154                                 initializer.HoistedReturnState.EmitAssign (ec, value, false, false);
7155                         }
7156                 }
7157
7158                 //
7159                 // Emits state table of jumps outside of try block and reload of return
7160                 // value when try block returns value
7161                 //
7162                 void EmitUnwindFinallyTable (EmitContext ec)
7163                 {
7164                         if (redirected_jumps == null)
7165                                 return;
7166
7167                         var initializer = (AsyncInitializer)ec.CurrentAnonymousMethod;
7168                         initializer.HoistedReturnState.EmitLoad (ec);
7169                         ec.Emit (OpCodes.Switch, redirected_jumps.ToArray ());
7170
7171                         // Mark fallthrough label
7172                         ec.MarkLabel (redirected_jumps [0]);
7173                 }
7174
7175                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
7176                 {
7177                         var da = fc.BranchDefiniteAssignment ();
7178
7179                         var tf = fc.TryFinally;
7180                         fc.TryFinally = this;
7181
7182                         var res_stmt = Statement.FlowAnalysis (fc);
7183
7184                         fc.TryFinally = tf;
7185
7186                         var try_da = fc.DefiniteAssignment;
7187                         fc.DefiniteAssignment = da;
7188
7189                         var res_fin = fini.FlowAnalysis (fc);
7190
7191                         if (try_exit_dat != null) {
7192                                 //
7193                                 // try block has global exit but we need to run definite assignment check
7194                                 // for parameter block out parameter after finally block because it's always
7195                                 // executed before exit
7196                                 //
7197                                 foreach (var try_da_part in try_exit_dat)
7198                                         fc.ParametersBlock.CheckControlExit (fc, fc.DefiniteAssignment | try_da_part);
7199
7200                                 try_exit_dat = null;
7201                         }
7202
7203                         fc.DefiniteAssignment |= try_da;
7204                         return res_stmt | res_fin;
7205                 }
7206
7207                 public override Reachability MarkReachable (Reachability rc)
7208                 {
7209                         //
7210                         // Mark finally block first for any exit statement in try block
7211                         // to know whether the code which follows finally is reachable
7212                         //
7213                         return fini.MarkReachable (rc) | base.MarkReachable (rc);
7214                 }
7215
7216                 protected override void CloneTo (CloneContext clonectx, Statement t)
7217                 {
7218                         TryFinally target = (TryFinally) t;
7219
7220                         target.stmt = stmt.Clone (clonectx);
7221                         if (fini != null)
7222                                 target.fini = (ExplicitBlock) clonectx.LookupBlock (fini);
7223                 }
7224                 
7225                 public override object Accept (StructuralVisitor visitor)
7226                 {
7227                         return visitor.Visit (this);
7228                 }
7229         }
7230
7231         public class TryCatch : ExceptionStatement
7232         {
7233                 public Block Block;
7234                 List<Catch> clauses;
7235                 readonly bool inside_try_finally;
7236                 List<Catch> catch_sm;
7237
7238                 public TryCatch (Block block, List<Catch> catch_clauses, Location l, bool inside_try_finally)
7239                         : base (l)
7240                 {
7241                         this.Block = block;
7242                         this.clauses = catch_clauses;
7243                         this.inside_try_finally = inside_try_finally;
7244                 }
7245
7246                 public List<Catch> Clauses {
7247                         get {
7248                                 return clauses;
7249                         }
7250                 }
7251
7252                 public bool HasClauseWithAwait {
7253                         get {
7254                                 return catch_sm != null;
7255                         }
7256                 }
7257
7258                 public bool IsTryCatchFinally {
7259                         get {
7260                                 return inside_try_finally;
7261                         }
7262                 }
7263
7264                 public override bool Resolve (BlockContext bc)
7265                 {
7266                         bool ok;
7267
7268                         using (bc.Set (ResolveContext.Options.TryScope)) {
7269
7270                                 parent_try_block = bc.CurrentTryBlock;
7271
7272                                 if (IsTryCatchFinally) {
7273                                         ok = Block.Resolve (bc);
7274                                 } else {
7275                                         using (bc.Set (ResolveContext.Options.TryWithCatchScope)) {
7276                                                 bc.CurrentTryBlock = this;
7277                                                 ok = Block.Resolve (bc);
7278                                                 bc.CurrentTryBlock = parent_try_block;
7279                                         }
7280                                 }
7281                         }
7282
7283                         var prev_catch = bc.CurrentTryCatch;
7284                         bc.CurrentTryCatch = this;
7285
7286                         for (int i = 0; i < clauses.Count; ++i) {
7287                                 var c = clauses[i];
7288
7289                                 ok &= c.Resolve (bc);
7290
7291                                 if (c.Block.HasAwait) {
7292                                         if (catch_sm == null)
7293                                                 catch_sm = new List<Catch> ();
7294
7295                                         catch_sm.Add (c);
7296                                 }
7297
7298                                 if (c.Filter != null)
7299                                         continue;
7300
7301                                 TypeSpec resolved_type = c.CatchType;
7302                                 if (resolved_type == null)
7303                                         continue;
7304
7305                                 for (int ii = 0; ii < clauses.Count; ++ii) {
7306                                         if (ii == i)
7307                                                 continue;
7308
7309                                         if (clauses[ii].Filter != null)
7310                                                 continue;
7311
7312                                         if (clauses[ii].IsGeneral) {
7313                                                 if (resolved_type.BuiltinType != BuiltinTypeSpec.Type.Exception)
7314                                                         continue;
7315
7316                                                 if (!bc.Module.DeclaringAssembly.WrapNonExceptionThrows)
7317                                                         continue;
7318
7319                                                 if (!bc.Module.PredefinedAttributes.RuntimeCompatibility.IsDefined)
7320                                                         continue;
7321
7322                                                 bc.Report.Warning (1058, 1, c.loc,
7323                                                         "A previous catch clause already catches all exceptions. All non-exceptions thrown will be wrapped in a `System.Runtime.CompilerServices.RuntimeWrappedException'");
7324
7325                                                 continue;
7326                                         }
7327
7328                                         if (ii >= i)
7329                                                 continue;
7330
7331                                         var ct = clauses[ii].CatchType;
7332                                         if (ct == null)
7333                                                 continue;
7334
7335                                         if (resolved_type == ct || TypeSpec.IsBaseClass (resolved_type, ct, true)) {
7336                                                 bc.Report.Error (160, c.loc,
7337                                                         "A previous catch clause already catches all exceptions of this or a super type `{0}'",
7338                                                         ct.GetSignatureForError ());
7339                                                 ok = false;
7340                                         }
7341                                 }
7342                         }
7343
7344                         bc.CurrentTryCatch = prev_catch;
7345
7346                         return base.Resolve (bc) && ok;
7347                 }
7348
7349                 protected sealed override void DoEmit (EmitContext ec)
7350                 {
7351                         if (!inside_try_finally)
7352                                 EmitTryBodyPrepare (ec);
7353
7354                         Block.Emit (ec);
7355
7356                         LocalBuilder state_variable = null;
7357                         foreach (Catch c in clauses) {
7358                                 c.Emit (ec);
7359
7360                                 if (catch_sm != null) {
7361                                         if (state_variable == null) {
7362                                                 //
7363                                                 // Cannot reuse temp variable because non-catch path assumes the value is 0
7364                                                 // which may not be true for reused local variable
7365                                                 //
7366                                                 state_variable = ec.DeclareLocal (ec.Module.Compiler.BuiltinTypes.Int, false);
7367                                         }
7368
7369                                         var index = catch_sm.IndexOf (c);
7370                                         if (index < 0)
7371                                                 continue;
7372
7373                                         ec.EmitInt (index + 1);
7374                                         ec.Emit (OpCodes.Stloc, state_variable);
7375                                 }
7376                         }
7377
7378                         if (state_variable == null) {
7379                                 if (!inside_try_finally)
7380                                         ec.EndExceptionBlock ();
7381                         } else {
7382                                 ec.EndExceptionBlock ();
7383
7384                                 ec.Emit (OpCodes.Ldloc, state_variable);
7385
7386                                 var labels = new Label [catch_sm.Count + 1];
7387                                 for (int i = 0; i < labels.Length; ++i) {
7388                                         labels [i] = ec.DefineLabel ();
7389                                 }
7390
7391                                 var end = ec.DefineLabel ();
7392                                 ec.Emit (OpCodes.Switch, labels);
7393
7394                                 // 0 value is default label
7395                                 ec.MarkLabel (labels [0]);
7396                                 ec.Emit (OpCodes.Br, end);
7397
7398                                 var atv = ec.AsyncThrowVariable;
7399                                 Catch c = null;
7400                                 for (int i = 0; i < catch_sm.Count; ++i) {
7401                                         if (c != null && c.Block.HasReachableClosingBrace)
7402                                                 ec.Emit (OpCodes.Br, end);
7403
7404                                         ec.MarkLabel (labels [i + 1]);
7405                                         c = catch_sm [i];
7406                                         ec.AsyncThrowVariable = c.Variable;
7407                                         c.Block.Emit (ec);
7408                                 }
7409                                 ec.AsyncThrowVariable = atv;
7410
7411                                 ec.MarkLabel (end);
7412                         }
7413                 }
7414
7415                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
7416                 {
7417                         var start_fc = fc.BranchDefiniteAssignment ();
7418                         var res = Block.FlowAnalysis (fc);
7419
7420                         DefiniteAssignmentBitSet try_fc = res ? null : fc.DefiniteAssignment;
7421
7422                         foreach (var c in clauses) {
7423                                 fc.BranchDefiniteAssignment (start_fc);
7424                                 if (!c.FlowAnalysis (fc)) {
7425                                         if (try_fc == null)
7426                                                 try_fc = fc.DefiniteAssignment;
7427                                         else
7428                                                 try_fc &= fc.DefiniteAssignment;
7429
7430                                         res = false;
7431                                 }
7432                         }
7433
7434                         fc.DefiniteAssignment = try_fc ?? start_fc;
7435                         parent_try_block = null;
7436                         return res;
7437                 }
7438
7439                 public override Reachability MarkReachable (Reachability rc)
7440                 {
7441                         if (rc.IsUnreachable)
7442                                 return rc;
7443
7444                         base.MarkReachable (rc);
7445
7446                         var tc_rc = Block.MarkReachable (rc);
7447
7448                         foreach (var c in clauses)
7449                                 tc_rc &= c.MarkReachable (rc);
7450
7451                         return tc_rc;
7452                 }
7453
7454                 protected override void CloneTo (CloneContext clonectx, Statement t)
7455                 {
7456                         TryCatch target = (TryCatch) t;
7457
7458                         target.Block = clonectx.LookupBlock (Block);
7459                         if (clauses != null){
7460                                 target.clauses = new List<Catch> ();
7461                                 foreach (Catch c in clauses)
7462                                         target.clauses.Add ((Catch) c.Clone (clonectx));
7463                         }
7464                 }
7465
7466                 public override object Accept (StructuralVisitor visitor)
7467                 {
7468                         return visitor.Visit (this);
7469                 }
7470         }
7471
7472         public class Using : TryFinallyBlock
7473         {
7474                 public class VariableDeclaration : BlockVariable
7475                 {
7476                         Statement dispose_call;
7477
7478                         public VariableDeclaration (FullNamedExpression type, LocalVariable li)
7479                                 : base (type, li)
7480                         {
7481                         }
7482
7483                         public VariableDeclaration (LocalVariable li, Location loc)
7484                                 : base (li)
7485                         {
7486                                 reachable = true;
7487                                 this.loc = loc;
7488                         }
7489
7490                         public VariableDeclaration (Expression expr)
7491                                 : base (null)
7492                         {
7493                                 loc = expr.Location;
7494                                 Initializer = expr;
7495                         }
7496
7497                         #region Properties
7498
7499                         public bool IsNested { get; private set; }
7500
7501                         #endregion
7502
7503                         public void EmitDispose (EmitContext ec)
7504                         {
7505                                 dispose_call.Emit (ec);
7506                         }
7507
7508                         public override bool Resolve (BlockContext bc)
7509                         {
7510                                 if (IsNested)
7511                                         return true;
7512
7513                                 return base.Resolve (bc, false);
7514                         }
7515
7516                         public Expression ResolveExpression (BlockContext bc)
7517                         {
7518                                 var e = Initializer.Resolve (bc);
7519                                 if (e == null)
7520                                         return null;
7521
7522                                 li = LocalVariable.CreateCompilerGenerated (e.Type, bc.CurrentBlock, loc);
7523                                 Initializer = ResolveInitializer (bc, Variable, e);
7524                                 return e;
7525                         }
7526
7527                         protected override Expression ResolveInitializer (BlockContext bc, LocalVariable li, Expression initializer)
7528                         {
7529                                 if (li.Type.BuiltinType == BuiltinTypeSpec.Type.Dynamic) {
7530                                         initializer = initializer.Resolve (bc);
7531                                         if (initializer == null)
7532                                                 return null;
7533
7534                                         // Once there is dynamic used defer conversion to runtime even if we know it will never succeed
7535                                         Arguments args = new Arguments (1);
7536                                         args.Add (new Argument (initializer));
7537                                         initializer = new DynamicConversion (bc.BuiltinTypes.IDisposable, 0, args, initializer.Location).Resolve (bc);
7538                                         if (initializer == null)
7539                                                 return null;
7540
7541                                         var var = LocalVariable.CreateCompilerGenerated (initializer.Type, bc.CurrentBlock, loc);
7542                                         dispose_call = CreateDisposeCall (bc, var);
7543                                         dispose_call.Resolve (bc);
7544
7545                                         return base.ResolveInitializer (bc, li, new SimpleAssign (var.CreateReferenceExpression (bc, loc), initializer, loc));
7546                                 }
7547
7548                                 if (li == Variable) {
7549                                         CheckIDiposableConversion (bc, li, initializer);
7550                                         dispose_call = CreateDisposeCall (bc, li);
7551                                         dispose_call.Resolve (bc);
7552                                 }
7553
7554                                 return base.ResolveInitializer (bc, li, initializer);
7555                         }
7556
7557                         protected virtual void CheckIDiposableConversion (BlockContext bc, LocalVariable li, Expression initializer)
7558                         {
7559                                 var type = li.Type;
7560
7561                                 if (type.BuiltinType != BuiltinTypeSpec.Type.IDisposable && !CanConvertToIDisposable (bc, type)) {
7562                                         if (type.IsNullableType) {
7563                                                 // it's handled in CreateDisposeCall
7564                                                 return;
7565                                         }
7566
7567                                         if (type != InternalType.ErrorType) {
7568                                                 bc.Report.SymbolRelatedToPreviousError (type);
7569                                                 var loc = type_expr == null ? initializer.Location : type_expr.Location;
7570                                                 bc.Report.Error (1674, loc, "`{0}': type used in a using statement must be implicitly convertible to `System.IDisposable'",
7571                                                         type.GetSignatureForError ());
7572                                         }
7573
7574                                         return;
7575                                 }
7576                         }
7577
7578                         static bool CanConvertToIDisposable (BlockContext bc, TypeSpec type)
7579                         {
7580                                 var target = bc.BuiltinTypes.IDisposable;
7581                                 var tp = type as TypeParameterSpec;
7582                                 if (tp != null)
7583                                         return Convert.ImplicitTypeParameterConversion (null, tp, target) != null;
7584
7585                                 return type.ImplementsInterface (target, false);
7586                         }
7587
7588                         protected virtual Statement CreateDisposeCall (BlockContext bc, LocalVariable lv)
7589                         {
7590                                 var lvr = lv.CreateReferenceExpression (bc, lv.Location);
7591                                 var type = lv.Type;
7592                                 var loc = lv.Location;
7593
7594                                 var idt = bc.BuiltinTypes.IDisposable;
7595                                 var m = bc.Module.PredefinedMembers.IDisposableDispose.Resolve (loc);
7596
7597                                 var dispose_mg = MethodGroupExpr.CreatePredefined (m, idt, loc);
7598                                 dispose_mg.InstanceExpression = type.IsNullableType ?
7599                                         new Cast (new TypeExpression (idt, loc), lvr, loc).Resolve (bc) :
7600                                         lvr;
7601
7602                                 //
7603                                 // Hide it from symbol file via null location
7604                                 //
7605                                 Statement dispose = new StatementExpression (new Invocation (dispose_mg, null), Location.Null);
7606
7607                                 // Add conditional call when disposing possible null variable
7608                                 if (!TypeSpec.IsValueType (type) || type.IsNullableType)
7609                                         dispose = new If (new Binary (Binary.Operator.Inequality, lvr, new NullLiteral (loc)), dispose, dispose.loc);
7610
7611                                 return dispose;
7612                         }
7613
7614                         public void ResolveDeclaratorInitializer (BlockContext bc)
7615                         {
7616                                 Initializer = base.ResolveInitializer (bc, Variable, Initializer);
7617                         }
7618
7619                         public Statement RewriteUsingDeclarators (BlockContext bc, Statement stmt)
7620                         {
7621                                 for (int i = declarators.Count - 1; i >= 0; --i) {
7622                                         var d = declarators [i];
7623                                         var vd = new VariableDeclaration (d.Variable, d.Variable.Location);
7624                                         vd.Initializer = d.Initializer;
7625                                         vd.IsNested = true;
7626                                         vd.dispose_call = CreateDisposeCall (bc, d.Variable);
7627                                         vd.dispose_call.Resolve (bc);
7628
7629                                         stmt = new Using (vd, stmt, d.Variable.Location);
7630                                 }
7631
7632                                 declarators = null;
7633                                 return stmt;
7634                         }       
7635
7636                         public override object Accept (StructuralVisitor visitor)
7637                         {
7638                                 return visitor.Visit (this);
7639                         }       
7640                 }
7641
7642                 VariableDeclaration decl;
7643
7644                 public Using (VariableDeclaration decl, Statement stmt, Location loc)
7645                         : base (stmt, loc)
7646                 {
7647                         this.decl = decl;
7648                 }
7649
7650                 public Using (Expression expr, Statement stmt, Location loc)
7651                         : base (stmt, loc)
7652                 {
7653                         this.decl = new VariableDeclaration (expr);
7654                 }
7655
7656                 #region Properties
7657
7658                 public Expression Expr {
7659                         get {
7660                                 return decl.Variable == null ? decl.Initializer : null;
7661                         }
7662                 }
7663
7664                 public BlockVariable Variables {
7665                         get {
7666                                 return decl;
7667                         }
7668                 }
7669
7670                 #endregion
7671
7672                 public override void Emit (EmitContext ec)
7673                 {
7674                         //
7675                         // Don't emit sequence point it will be set on variable declaration
7676                         //
7677                         DoEmit (ec);
7678                 }
7679
7680                 protected override void EmitTryBodyPrepare (EmitContext ec)
7681                 {
7682                         decl.Emit (ec);
7683                         base.EmitTryBodyPrepare (ec);
7684                 }
7685
7686                 protected override void EmitTryBody (EmitContext ec)
7687                 {
7688                         stmt.Emit (ec);
7689                 }
7690
7691                 public override void EmitFinallyBody (EmitContext ec)
7692                 {
7693                         decl.EmitDispose (ec);
7694                 }
7695
7696                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
7697                 {
7698                         decl.FlowAnalysis (fc);
7699                         return stmt.FlowAnalysis (fc);
7700                 }
7701
7702                 public override Reachability MarkReachable (Reachability rc)
7703                 {
7704                         decl.MarkReachable (rc);
7705                         return base.MarkReachable (rc);
7706                 }
7707
7708                 public override bool Resolve (BlockContext ec)
7709                 {
7710                         VariableReference vr;
7711                         bool vr_locked = false;
7712
7713                         using (ec.Set (ResolveContext.Options.UsingInitializerScope)) {
7714                                 if (decl.Variable == null) {
7715                                         vr = decl.ResolveExpression (ec) as VariableReference;
7716                                         if (vr != null) {
7717                                                 vr_locked = vr.IsLockedByStatement;
7718                                                 vr.IsLockedByStatement = true;
7719                                         }
7720                                 } else {
7721                                         if (decl.IsNested) {
7722                                                 decl.ResolveDeclaratorInitializer (ec);
7723                                         } else {
7724                                                 if (!decl.Resolve (ec))
7725                                                         return false;
7726
7727                                                 if (decl.Declarators != null) {
7728                                                         stmt = decl.RewriteUsingDeclarators (ec, stmt);
7729                                                 }
7730                                         }
7731
7732                                         vr = null;
7733                                 }
7734                         }
7735
7736                         var ok = base.Resolve (ec);
7737
7738                         if (vr != null)
7739                                 vr.IsLockedByStatement = vr_locked;
7740
7741                         return ok;
7742                 }
7743
7744                 protected override void CloneTo (CloneContext clonectx, Statement t)
7745                 {
7746                         Using target = (Using) t;
7747
7748                         target.decl = (VariableDeclaration) decl.Clone (clonectx);
7749                         target.stmt = stmt.Clone (clonectx);
7750                 }
7751
7752                 public override object Accept (StructuralVisitor visitor)
7753                 {
7754                         return visitor.Visit (this);
7755                 }
7756         }
7757
7758         /// <summary>
7759         ///   Implementation of the foreach C# statement
7760         /// </summary>
7761         public class Foreach : LoopStatement
7762         {
7763                 abstract class IteratorStatement : Statement
7764                 {
7765                         protected readonly Foreach for_each;
7766
7767                         protected IteratorStatement (Foreach @foreach)
7768                         {
7769                                 this.for_each = @foreach;
7770                                 this.loc = @foreach.expr.Location;
7771                         }
7772
7773                         protected override void CloneTo (CloneContext clonectx, Statement target)
7774                         {
7775                                 throw new NotImplementedException ();
7776                         }
7777
7778                         public override void Emit (EmitContext ec)
7779                         {
7780                                 if (ec.EmitAccurateDebugInfo) {
7781                                         ec.Emit (OpCodes.Nop);
7782                                 }
7783
7784                                 base.Emit (ec);
7785                         }
7786
7787                         protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
7788                         {
7789                                 throw new NotImplementedException ();
7790                         }
7791                 }
7792
7793                 sealed class ArrayForeach : IteratorStatement
7794                 {
7795                         TemporaryVariableReference[] lengths;
7796                         Expression [] length_exprs;
7797                         StatementExpression[] counter;
7798                         TemporaryVariableReference[] variables;
7799
7800                         TemporaryVariableReference copy;
7801
7802                         public ArrayForeach (Foreach @foreach, int rank)
7803                                 : base (@foreach)
7804                         {
7805                                 counter = new StatementExpression[rank];
7806                                 variables = new TemporaryVariableReference[rank];
7807                                 length_exprs = new Expression [rank];
7808
7809                                 //
7810                                 // Only use temporary length variables when dealing with
7811                                 // multi-dimensional arrays
7812                                 //
7813                                 if (rank > 1)
7814                                         lengths = new TemporaryVariableReference [rank];
7815                         }
7816
7817                         public override bool Resolve (BlockContext ec)
7818                         {
7819                                 Block variables_block = for_each.variable.Block;
7820                                 copy = TemporaryVariableReference.Create (for_each.expr.Type, variables_block, loc);
7821                                 copy.Resolve (ec);
7822
7823                                 int rank = length_exprs.Length;
7824                                 Arguments list = new Arguments (rank);
7825                                 for (int i = 0; i < rank; i++) {
7826                                         var v = TemporaryVariableReference.Create (ec.BuiltinTypes.Int, variables_block, loc);
7827                                         variables[i] = v;
7828                                         counter[i] = new StatementExpression (new UnaryMutator (UnaryMutator.Mode.PostIncrement, v, Location.Null));
7829                                         counter[i].Resolve (ec);
7830
7831                                         if (rank == 1) {
7832                                                 length_exprs [i] = new MemberAccess (copy, "Length").Resolve (ec);
7833                                         } else {
7834                                                 lengths[i] = TemporaryVariableReference.Create (ec.BuiltinTypes.Int, variables_block, loc);
7835                                                 lengths[i].Resolve (ec);
7836
7837                                                 Arguments args = new Arguments (1);
7838                                                 args.Add (new Argument (new IntConstant (ec.BuiltinTypes, i, loc)));
7839                                                 length_exprs [i] = new Invocation (new MemberAccess (copy, "GetLength"), args).Resolve (ec);
7840                                         }
7841
7842                                         list.Add (new Argument (v));
7843                                 }
7844
7845                                 var access = new ElementAccess (copy, list, loc).Resolve (ec);
7846                                 if (access == null)
7847                                         return false;
7848
7849                                 TypeSpec var_type;
7850                                 if (for_each.type is VarExpr) {
7851                                         // Infer implicitly typed local variable from foreach array type
7852                                         var_type = access.Type;
7853                                 } else {
7854                                         var_type = for_each.type.ResolveAsType (ec);
7855
7856                                         if (var_type == null)
7857                                                 return false;
7858
7859                                         access = Convert.ExplicitConversion (ec, access, var_type, loc);
7860                                         if (access == null)
7861                                                 return false;
7862                                 }
7863
7864                                 for_each.variable.Type = var_type;
7865
7866                                 var prev_block = ec.CurrentBlock;
7867                                 ec.CurrentBlock = variables_block;
7868                                 var variable_ref = new LocalVariableReference (for_each.variable, loc).Resolve (ec);
7869                                 ec.CurrentBlock = prev_block;
7870
7871                                 if (variable_ref == null)
7872                                         return false;
7873
7874                                 for_each.body.AddScopeStatement (new StatementExpression (new CompilerAssign (variable_ref, access, Location.Null), for_each.type.Location));
7875
7876                                 return for_each.body.Resolve (ec);
7877                         }
7878
7879                         protected override void DoEmit (EmitContext ec)
7880                         {
7881                                 copy.EmitAssign (ec, for_each.expr);
7882
7883                                 int rank = length_exprs.Length;
7884                                 Label[] test = new Label [rank];
7885                                 Label[] loop = new Label [rank];
7886
7887                                 for (int i = 0; i < rank; i++) {
7888                                         test [i] = ec.DefineLabel ();
7889                                         loop [i] = ec.DefineLabel ();
7890
7891                                         if (lengths != null)
7892                                                 lengths [i].EmitAssign (ec, length_exprs [i]);
7893                                 }
7894
7895                                 IntConstant zero = new IntConstant (ec.BuiltinTypes, 0, loc);
7896                                 for (int i = 0; i < rank; i++) {
7897                                         variables [i].EmitAssign (ec, zero);
7898
7899                                         ec.Emit (OpCodes.Br, test [i]);
7900                                         ec.MarkLabel (loop [i]);
7901                                 }
7902
7903                                 for_each.body.Emit (ec);
7904
7905                                 ec.MarkLabel (ec.LoopBegin);
7906                                 ec.Mark (for_each.expr.Location);
7907
7908                                 for (int i = rank - 1; i >= 0; i--){
7909                                         counter [i].Emit (ec);
7910
7911                                         ec.MarkLabel (test [i]);
7912                                         variables [i].Emit (ec);
7913
7914                                         if (lengths != null)
7915                                                 lengths [i].Emit (ec);
7916                                         else
7917                                                 length_exprs [i].Emit (ec);
7918
7919                                         ec.Emit (OpCodes.Blt, loop [i]);
7920                                 }
7921
7922                                 ec.MarkLabel (ec.LoopEnd);
7923                         }
7924                 }
7925
7926                 sealed class CollectionForeach : IteratorStatement, OverloadResolver.IErrorHandler
7927                 {
7928                         class RuntimeDispose : Using.VariableDeclaration
7929                         {
7930                                 public RuntimeDispose (LocalVariable lv, Location loc)
7931                                         : base (lv, loc)
7932                                 {
7933                                         reachable = true;
7934                                 }
7935
7936                                 protected override void CheckIDiposableConversion (BlockContext bc, LocalVariable li, Expression initializer)
7937                                 {
7938                                         // Defered to runtime check
7939                                 }
7940
7941                                 protected override Statement CreateDisposeCall (BlockContext bc, LocalVariable lv)
7942                                 {
7943                                         var idt = bc.BuiltinTypes.IDisposable;
7944
7945                                         //
7946                                         // Fabricates code like
7947                                         //
7948                                         // if ((temp = vr as IDisposable) != null) temp.Dispose ();
7949                                         //
7950
7951                                         var dispose_variable = LocalVariable.CreateCompilerGenerated (idt, bc.CurrentBlock, loc);
7952
7953                                         var idisaposable_test = new Binary (Binary.Operator.Inequality, new CompilerAssign (
7954                                                 dispose_variable.CreateReferenceExpression (bc, loc),
7955                                                 new As (lv.CreateReferenceExpression (bc, loc), new TypeExpression (dispose_variable.Type, loc), loc),
7956                                                 loc), new NullLiteral (loc));
7957
7958                                         var m = bc.Module.PredefinedMembers.IDisposableDispose.Resolve (loc);
7959
7960                                         var dispose_mg = MethodGroupExpr.CreatePredefined (m, idt, loc);
7961                                         dispose_mg.InstanceExpression = dispose_variable.CreateReferenceExpression (bc, loc);
7962
7963                                         Statement dispose = new StatementExpression (new Invocation (dispose_mg, null));
7964                                         return new If (idisaposable_test, dispose, loc);
7965                                 }
7966                         }
7967
7968                         LocalVariable variable;
7969                         Expression expr;
7970                         Statement statement;
7971                         ExpressionStatement init;
7972                         TemporaryVariableReference enumerator_variable;
7973                         bool ambiguous_getenumerator_name;
7974
7975                         public CollectionForeach (Foreach @foreach, LocalVariable var, Expression expr)
7976                                 : base (@foreach)
7977                         {
7978                                 this.variable = var;
7979                                 this.expr = expr;
7980                         }
7981
7982                         void Error_WrongEnumerator (ResolveContext rc, MethodSpec enumerator)
7983                         {
7984                                 rc.Report.SymbolRelatedToPreviousError (enumerator);
7985                                 rc.Report.Error (202, loc,
7986                                         "foreach statement requires that the return type `{0}' of `{1}' must have a suitable public MoveNext method and public Current property",
7987                                                 enumerator.ReturnType.GetSignatureForError (), enumerator.GetSignatureForError ());
7988                         }
7989
7990                         MethodGroupExpr ResolveGetEnumerator (ResolveContext rc)
7991                         {
7992                                 //
7993                                 // Option 1: Try to match by name GetEnumerator first
7994                                 //
7995                                 var mexpr = Expression.MemberLookup (rc, false, expr.Type,
7996                                         "GetEnumerator", 0, Expression.MemberLookupRestrictions.ExactArity, loc);               // TODO: What if CS0229 ?
7997
7998                                 var mg = mexpr as MethodGroupExpr;
7999                                 if (mg != null) {
8000                                         mg.InstanceExpression = expr;
8001                                         Arguments args = new Arguments (0);
8002                                         mg = mg.OverloadResolve (rc, ref args, this, OverloadResolver.Restrictions.ProbingOnly | OverloadResolver.Restrictions.GetEnumeratorLookup);
8003
8004                                         // For ambiguous GetEnumerator name warning CS0278 was reported, but Option 2 could still apply
8005                                         if (ambiguous_getenumerator_name)
8006                                                 mg = null;
8007
8008                                         if (mg != null && !mg.BestCandidate.IsStatic && mg.BestCandidate.IsPublic) {
8009                                                 return mg;
8010                                         }
8011                                 }
8012
8013                                 //
8014                                 // Option 2: Try to match using IEnumerable interfaces with preference of generic version
8015                                 //
8016                                 var t = expr.Type;
8017                                 PredefinedMember<MethodSpec> iface_candidate = null;
8018                                 var ptypes = rc.Module.PredefinedTypes;
8019                                 var gen_ienumerable = ptypes.IEnumerableGeneric;
8020                                 if (!gen_ienumerable.Define ())
8021                                         gen_ienumerable = null;
8022
8023                                 var ifaces = t.Interfaces;
8024                                 if (ifaces != null) {
8025                                         foreach (var iface in ifaces) {
8026                                                 if (gen_ienumerable != null && iface.MemberDefinition == gen_ienumerable.TypeSpec.MemberDefinition) {
8027                                                         if (iface_candidate != null && iface_candidate != rc.Module.PredefinedMembers.IEnumerableGetEnumerator) {
8028                                                                 rc.Report.SymbolRelatedToPreviousError (expr.Type);
8029                                                                 rc.Report.Error (1640, loc,
8030                                                                         "foreach statement cannot operate on variables of type `{0}' because it contains multiple implementation of `{1}'. Try casting to a specific implementation",
8031                                                                         expr.Type.GetSignatureForError (), gen_ienumerable.TypeSpec.GetSignatureForError ());
8032
8033                                                                 return null;
8034                                                         }
8035
8036                                                         // TODO: Cache this somehow
8037                                                         iface_candidate = new PredefinedMember<MethodSpec> (rc.Module, iface,
8038                                                                 MemberFilter.Method ("GetEnumerator", 0, ParametersCompiled.EmptyReadOnlyParameters, null));
8039
8040                                                         continue;
8041                                                 }
8042
8043                                                 if (iface.BuiltinType == BuiltinTypeSpec.Type.IEnumerable && iface_candidate == null) {
8044                                                         iface_candidate = rc.Module.PredefinedMembers.IEnumerableGetEnumerator;
8045                                                 }
8046                                         }
8047                                 }
8048
8049                                 if (iface_candidate == null) {
8050                                         if (expr.Type != InternalType.ErrorType) {
8051                                                 rc.Report.Error (1579, loc,
8052                                                         "foreach statement cannot operate on variables of type `{0}' because it does not contain a definition for `{1}' or is inaccessible",
8053                                                         expr.Type.GetSignatureForError (), "GetEnumerator");
8054                                         }
8055
8056                                         return null;
8057                                 }
8058
8059                                 var method = iface_candidate.Resolve (loc);
8060                                 if (method == null)
8061                                         return null;
8062
8063                                 mg = MethodGroupExpr.CreatePredefined (method, expr.Type, loc);
8064                                 mg.InstanceExpression = expr;
8065                                 return mg;
8066                         }
8067
8068                         MethodGroupExpr ResolveMoveNext (ResolveContext rc, MethodSpec enumerator)
8069                         {
8070                                 var ms = MemberCache.FindMember (enumerator.ReturnType,
8071                                         MemberFilter.Method ("MoveNext", 0, ParametersCompiled.EmptyReadOnlyParameters, rc.BuiltinTypes.Bool),
8072                                         BindingRestriction.InstanceOnly) as MethodSpec;
8073
8074                                 if (ms == null || !ms.IsPublic) {
8075                                         Error_WrongEnumerator (rc, enumerator);
8076                                         return null;
8077                                 }
8078
8079                                 return MethodGroupExpr.CreatePredefined (ms, enumerator.ReturnType, expr.Location);
8080                         }
8081
8082                         PropertySpec ResolveCurrent (ResolveContext rc, MethodSpec enumerator)
8083                         {
8084                                 var ps = MemberCache.FindMember (enumerator.ReturnType,
8085                                         MemberFilter.Property ("Current", null),
8086                                         BindingRestriction.InstanceOnly) as PropertySpec;
8087
8088                                 if (ps == null || !ps.IsPublic) {
8089                                         Error_WrongEnumerator (rc, enumerator);
8090                                         return null;
8091                                 }
8092
8093                                 return ps;
8094                         }
8095
8096                         public override bool Resolve (BlockContext ec)
8097                         {
8098                                 bool is_dynamic = expr.Type.BuiltinType == BuiltinTypeSpec.Type.Dynamic;
8099
8100                                 if (is_dynamic) {
8101                                         expr = Convert.ImplicitConversionRequired (ec, expr, ec.BuiltinTypes.IEnumerable, loc);
8102                                 } else if (expr.Type.IsNullableType) {
8103                                         expr = new Nullable.UnwrapCall (expr).Resolve (ec);
8104                                 }
8105
8106                                 var get_enumerator_mg = ResolveGetEnumerator (ec);
8107                                 if (get_enumerator_mg == null) {
8108                                         return false;
8109                                 }
8110
8111                                 var get_enumerator = get_enumerator_mg.BestCandidate;
8112                                 enumerator_variable = TemporaryVariableReference.Create (get_enumerator.ReturnType, variable.Block, loc);
8113                                 enumerator_variable.Resolve (ec);
8114
8115                                 // Prepare bool MoveNext ()
8116                                 var move_next_mg = ResolveMoveNext (ec, get_enumerator);
8117                                 if (move_next_mg == null) {
8118                                         return false;
8119                                 }
8120
8121                                 move_next_mg.InstanceExpression = enumerator_variable;
8122
8123                                 // Prepare ~T~ Current { get; }
8124                                 var current_prop = ResolveCurrent (ec, get_enumerator);
8125                                 if (current_prop == null) {
8126                                         return false;
8127                                 }
8128
8129                                 var current_pe = new PropertyExpr (current_prop, loc) { InstanceExpression = enumerator_variable }.Resolve (ec);
8130                                 if (current_pe == null)
8131                                         return false;
8132
8133                                 VarExpr ve = for_each.type as VarExpr;
8134
8135                                 if (ve != null) {
8136                                         if (is_dynamic) {
8137                                                 // Source type is dynamic, set element type to dynamic too
8138                                                 variable.Type = ec.BuiltinTypes.Dynamic;
8139                                         } else {
8140                                                 // Infer implicitly typed local variable from foreach enumerable type
8141                                                 variable.Type = current_pe.Type;
8142                                         }
8143                                 } else {
8144                                         if (is_dynamic) {
8145                                                 // Explicit cast of dynamic collection elements has to be done at runtime
8146                                                 current_pe = EmptyCast.Create (current_pe, ec.BuiltinTypes.Dynamic);
8147                                         }
8148
8149                                         variable.Type = for_each.type.ResolveAsType (ec);
8150
8151                                         if (variable.Type == null)
8152                                                 return false;
8153
8154                                         current_pe = Convert.ExplicitConversion (ec, current_pe, variable.Type, loc);
8155                                         if (current_pe == null)
8156                                                 return false;
8157                                 }
8158
8159                                 var prev_block = ec.CurrentBlock;
8160                                 ec.CurrentBlock = for_each.variable.Block;
8161                                 var variable_ref = new LocalVariableReference (variable, loc).Resolve (ec);
8162                                 ec.CurrentBlock = prev_block;
8163                                 if (variable_ref == null)
8164                                         return false;
8165
8166                                 for_each.body.AddScopeStatement (new StatementExpression (new CompilerAssign (variable_ref, current_pe, Location.Null), for_each.type.Location));
8167
8168                                 var init = new Invocation.Predefined (get_enumerator_mg, null);
8169
8170                                 statement = new While (new BooleanExpression (new Invocation (move_next_mg, null)),
8171                                          for_each.body, Location.Null);
8172
8173                                 var enum_type = enumerator_variable.Type;
8174
8175                                 //
8176                                 // Add Dispose method call when enumerator can be IDisposable
8177                                 //
8178                                 if (!enum_type.ImplementsInterface (ec.BuiltinTypes.IDisposable, false)) {
8179                                         if (!enum_type.IsSealed && !TypeSpec.IsValueType (enum_type)) {
8180                                                 //
8181                                                 // Runtime Dispose check
8182                                                 //
8183                                                 var vd = new RuntimeDispose (enumerator_variable.LocalInfo, Location.Null);
8184                                                 vd.Initializer = init;
8185                                                 statement = new Using (vd, statement, Location.Null);
8186                                         } else {
8187                                                 //
8188                                                 // No Dispose call needed
8189                                                 //
8190                                                 this.init = new SimpleAssign (enumerator_variable, init, Location.Null);
8191                                                 this.init.Resolve (ec);
8192                                         }
8193                                 } else {
8194                                         //
8195                                         // Static Dispose check
8196                                         //
8197                                         var vd = new Using.VariableDeclaration (enumerator_variable.LocalInfo, Location.Null);
8198                                         vd.Initializer = init;
8199                                         statement = new Using (vd, statement, Location.Null);
8200                                 }
8201
8202                                 return statement.Resolve (ec);
8203                         }
8204
8205                         protected override void DoEmit (EmitContext ec)
8206                         {
8207                                 enumerator_variable.LocalInfo.CreateBuilder (ec);
8208
8209                                 if (init != null)
8210                                         init.EmitStatement (ec);
8211
8212                                 statement.Emit (ec);
8213                         }
8214
8215                         #region IErrorHandler Members
8216
8217                         bool OverloadResolver.IErrorHandler.AmbiguousCandidates (ResolveContext ec, MemberSpec best, MemberSpec ambiguous)
8218                         {
8219                                 ec.Report.SymbolRelatedToPreviousError (best);
8220                                 ec.Report.Warning (278, 2, expr.Location,
8221                                         "`{0}' contains ambiguous implementation of `{1}' pattern. Method `{2}' is ambiguous with method `{3}'",
8222                                         expr.Type.GetSignatureForError (), "enumerable",
8223                                         best.GetSignatureForError (), ambiguous.GetSignatureForError ());
8224
8225                                 ambiguous_getenumerator_name = true;
8226                                 return true;
8227                         }
8228
8229                         bool OverloadResolver.IErrorHandler.ArgumentMismatch (ResolveContext rc, MemberSpec best, Argument arg, int index)
8230                         {
8231                                 return false;
8232                         }
8233
8234                         bool OverloadResolver.IErrorHandler.NoArgumentMatch (ResolveContext rc, MemberSpec best)
8235                         {
8236                                 return false;
8237                         }
8238
8239                         bool OverloadResolver.IErrorHandler.TypeInferenceFailed (ResolveContext rc, MemberSpec best)
8240                         {
8241                                 return false;
8242                         }
8243
8244                         #endregion
8245                 }
8246
8247                 Expression type;
8248                 LocalVariable variable;
8249                 Expression expr;
8250                 Block body;
8251
8252                 public Foreach (Expression type, LocalVariable var, Expression expr, Statement stmt, Block body, Location l)
8253                         : base (stmt)
8254                 {
8255                         this.type = type;
8256                         this.variable = var;
8257                         this.expr = expr;
8258                         this.body = body;
8259                         loc = l;
8260                 }
8261
8262                 public Expression Expr {
8263                         get { return expr; }
8264                 }
8265
8266                 public Expression TypeExpression {
8267                         get { return type; }
8268                 }
8269
8270                 public LocalVariable Variable {
8271                         get { return variable; }
8272                 }
8273
8274                 public override Reachability MarkReachable (Reachability rc)
8275                 {
8276                         base.MarkReachable (rc);
8277
8278                         body.MarkReachable (rc);
8279
8280                         return rc;
8281                 }
8282
8283                 public override bool Resolve (BlockContext ec)
8284                 {
8285                         expr = expr.Resolve (ec);
8286                         if (expr == null)
8287                                 return false;
8288
8289                         if (expr.IsNull) {
8290                                 ec.Report.Error (186, loc, "Use of null is not valid in this context");
8291                                 return false;
8292                         }
8293
8294                         body.AddStatement (Statement);
8295
8296                         if (expr.Type.BuiltinType == BuiltinTypeSpec.Type.String) {
8297                                 Statement = new ArrayForeach (this, 1);
8298                         } else if (expr.Type is ArrayContainer) {
8299                                 Statement = new ArrayForeach (this, ((ArrayContainer) expr.Type).Rank);
8300                         } else {
8301                                 if (expr.eclass == ExprClass.MethodGroup || expr is AnonymousMethodExpression) {
8302                                         ec.Report.Error (446, expr.Location, "Foreach statement cannot operate on a `{0}'",
8303                                                 expr.ExprClassName);
8304                                         return false;
8305                                 }
8306
8307                                 Statement = new CollectionForeach (this, variable, expr);
8308                         }
8309
8310                         return base.Resolve (ec);
8311                 }
8312
8313                 protected override void DoEmit (EmitContext ec)
8314                 {
8315                         Label old_begin = ec.LoopBegin, old_end = ec.LoopEnd;
8316                         ec.LoopBegin = ec.DefineLabel ();
8317                         ec.LoopEnd = ec.DefineLabel ();
8318
8319                         if (!(Statement is Block))
8320                                 ec.BeginCompilerScope (variable.Block.Explicit.GetDebugSymbolScopeIndex ());
8321
8322                         variable.CreateBuilder (ec);
8323
8324                         Statement.Emit (ec);
8325
8326                         if (!(Statement is Block))
8327                                 ec.EndScope ();
8328
8329                         ec.LoopBegin = old_begin;
8330                         ec.LoopEnd = old_end;
8331                 }
8332
8333                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
8334                 {
8335                         expr.FlowAnalysis (fc);
8336
8337                         var da = fc.BranchDefiniteAssignment ();
8338                         body.FlowAnalysis (fc);
8339                         fc.DefiniteAssignment = da;
8340                         return false;
8341                 }
8342
8343                 protected override void CloneTo (CloneContext clonectx, Statement t)
8344                 {
8345                         Foreach target = (Foreach) t;
8346
8347                         target.type = type.Clone (clonectx);
8348                         target.expr = expr.Clone (clonectx);
8349                         target.body = (Block) body.Clone (clonectx);
8350                         target.Statement = Statement.Clone (clonectx);
8351                 }
8352                 
8353                 public override object Accept (StructuralVisitor visitor)
8354                 {
8355                         return visitor.Visit (this);
8356                 }
8357         }
8358
8359         class SentinelStatement: Statement
8360         {
8361                 protected override void CloneTo (CloneContext clonectx, Statement target)
8362                 {
8363                 }
8364
8365                 protected override void DoEmit (EmitContext ec)
8366                 {
8367                         var l = ec.DefineLabel ();
8368                         ec.MarkLabel (l);
8369                         ec.Emit (OpCodes.Br_S, l);
8370                 }
8371
8372                 protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
8373                 {
8374                         throw new NotImplementedException ();
8375                 }
8376         }
8377 }