2005-10-26 Marek Safar <marek.safar@seznam.cz>
[mono.git] / mcs / mcs / statement.cs
1 //
2 // statement.cs: Statement representation for the IL tree.
3 //
4 // Author:
5 //   Miguel de Icaza (miguel@ximian.com)
6 //   Martin Baulig (martin@ximian.com)
7 //
8 // (C) 2001, 2002, 2003 Ximian, Inc.
9 // (C) 2003, 2004 Novell, Inc.
10 //
11
12 using System;
13 using System.Text;
14 using System.Reflection;
15 using System.Reflection.Emit;
16 using System.Diagnostics;
17 using System.Collections;
18 using System.Collections.Specialized;
19
20 namespace Mono.CSharp {
21         
22         public abstract class Statement {
23                 public Location loc;
24                 
25                 /// <summary>
26                 ///   Resolves the statement, true means that all sub-statements
27                 ///   did resolve ok.
28                 //  </summary>
29                 public virtual bool Resolve (EmitContext ec)
30                 {
31                         return true;
32                 }
33
34                 /// <summary>
35                 ///   We already know that the statement is unreachable, but we still
36                 ///   need to resolve it to catch errors.
37                 /// </summary>
38                 public virtual bool ResolveUnreachable (EmitContext ec, bool warn)
39                 {
40                         //
41                         // This conflicts with csc's way of doing this, but IMHO it's
42                         // the right thing to do.
43                         //
44                         // If something is unreachable, we still check whether it's
45                         // correct.  This means that you cannot use unassigned variables
46                         // in unreachable code, for instance.
47                         //
48
49                         if (warn && (RootContext.WarningLevel >= 2))
50                                 Report.Warning (162, loc, "Unreachable code detected");
51
52                         ec.StartFlowBranching (FlowBranching.BranchingType.Block, loc);
53                         bool ok = Resolve (ec);
54                         ec.KillFlowBranching ();
55
56                         return ok;
57                 }
58                                 
59                 /// <summary>
60                 ///   Return value indicates whether all code paths emitted return.
61                 /// </summary>
62                 protected abstract void DoEmit (EmitContext ec);
63
64                 /// <summary>
65                 ///   Utility wrapper routine for Error, just to beautify the code
66                 /// </summary>
67                 public void Error (int error, string format, params object[] args)
68                 {
69                         Error (error, String.Format (format, args));
70                 }
71
72                 public void Error (int error, string s)
73                 {
74                         if (!loc.IsNull)
75                                 Report.Error (error, loc, s);
76                         else
77                                 Report.Error (error, s);
78                 }
79
80                 /// <summary>
81                 ///   Return value indicates whether all code paths emitted return.
82                 /// </summary>
83                 public virtual void Emit (EmitContext ec)
84                 {
85                         ec.Mark (loc, true);
86                         DoEmit (ec);
87                 }               
88         }
89
90         public sealed class EmptyStatement : Statement {
91                 
92                 private EmptyStatement () {}
93                 
94                 public static readonly EmptyStatement Value = new EmptyStatement ();
95                 
96                 public override bool Resolve (EmitContext ec)
97                 {
98                         return true;
99                 }
100                 
101                 protected override void DoEmit (EmitContext ec)
102                 {
103                 }
104         }
105         
106         public class If : Statement {
107                 Expression expr;
108                 public Statement TrueStatement;
109                 public Statement FalseStatement;
110
111                 bool is_true_ret;
112                 
113                 public If (Expression expr, Statement trueStatement, Location l)
114                 {
115                         this.expr = expr;
116                         TrueStatement = trueStatement;
117                         loc = l;
118                 }
119
120                 public If (Expression expr,
121                            Statement trueStatement,
122                            Statement falseStatement,
123                            Location l)
124                 {
125                         this.expr = expr;
126                         TrueStatement = trueStatement;
127                         FalseStatement = falseStatement;
128                         loc = l;
129                 }
130
131                 public override bool Resolve (EmitContext ec)
132                 {
133                         bool ok = true;
134
135                         Report.Debug (1, "START IF BLOCK", loc);
136
137                         expr = Expression.ResolveBoolean (ec, expr, loc);
138                         if (expr == null){
139                                 ok = false;
140                                 goto skip;
141                         }
142
143                         Assign ass = expr as Assign;
144                         if (ass != null && ass.Source is Constant) {
145                                 Report.Warning (665, 3, loc, "Assignment in conditional expression is always constant; did you mean to use == instead of = ?");
146                         }
147
148                         //
149                         // Dead code elimination
150                         //
151                         if (expr is BoolConstant){
152                                 bool take = ((BoolConstant) expr).Value;
153
154                                 if (take){
155                                         if (!TrueStatement.Resolve (ec))
156                                                 return false;
157
158                                         if ((FalseStatement != null) &&
159                                             !FalseStatement.ResolveUnreachable (ec, true))
160                                                 return false;
161                                         FalseStatement = null;
162                                 } else {
163                                         if (!TrueStatement.ResolveUnreachable (ec, true))
164                                                 return false;
165                                         TrueStatement = null;
166
167                                         if ((FalseStatement != null) &&
168                                             !FalseStatement.Resolve (ec))
169                                                 return false;
170                                 }
171
172                                 return true;
173                         }
174                 skip:
175                         ec.StartFlowBranching (FlowBranching.BranchingType.Conditional, loc);
176                         
177                         ok &= TrueStatement.Resolve (ec);
178
179                         is_true_ret = ec.CurrentBranching.CurrentUsageVector.Reachability.IsUnreachable;
180
181                         ec.CurrentBranching.CreateSibling ();
182
183                         if (FalseStatement != null)
184                                 ok &= FalseStatement.Resolve (ec);
185                                         
186                         ec.EndFlowBranching ();
187
188                         Report.Debug (1, "END IF BLOCK", loc);
189
190                         return ok;
191                 }
192                 
193                 protected override void DoEmit (EmitContext ec)
194                 {
195                         ILGenerator ig = ec.ig;
196                         Label false_target = ig.DefineLabel ();
197                         Label end;
198
199                         //
200                         // If we're a boolean expression, Resolve() already
201                         // eliminated dead code for us.
202                         //
203                         if (expr is BoolConstant){
204                                 bool take = ((BoolConstant) expr).Value;
205
206                                 if (take)
207                                         TrueStatement.Emit (ec);
208                                 else if (FalseStatement != null)
209                                         FalseStatement.Emit (ec);
210
211                                 return;
212                         }
213                         
214                         expr.EmitBranchable (ec, false_target, false);
215                         
216                         TrueStatement.Emit (ec);
217
218                         if (FalseStatement != null){
219                                 bool branch_emitted = false;
220                                 
221                                 end = ig.DefineLabel ();
222                                 if (!is_true_ret){
223                                         ig.Emit (OpCodes.Br, end);
224                                         branch_emitted = true;
225                                 }
226
227                                 ig.MarkLabel (false_target);
228                                 FalseStatement.Emit (ec);
229
230                                 if (branch_emitted)
231                                         ig.MarkLabel (end);
232                         } else {
233                                 ig.MarkLabel (false_target);
234                         }
235                 }
236         }
237
238         public class Do : Statement {
239                 public Expression expr;
240                 public readonly Statement  EmbeddedStatement;
241                 bool infinite;
242                 
243                 public Do (Statement statement, Expression boolExpr, Location l)
244                 {
245                         expr = boolExpr;
246                         EmbeddedStatement = statement;
247                         loc = l;
248                 }
249
250                 public override bool Resolve (EmitContext ec)
251                 {
252                         bool ok = true;
253
254                         ec.StartFlowBranching (FlowBranching.BranchingType.Loop, loc);
255
256                         if (!EmbeddedStatement.Resolve (ec))
257                                 ok = false;
258
259                         expr = Expression.ResolveBoolean (ec, expr, loc);
260                         if (expr == null)
261                                 ok = false;
262                         else if (expr is BoolConstant){
263                                 bool res = ((BoolConstant) expr).Value;
264
265                                 if (res)
266                                         infinite = true;
267                         }
268
269                         ec.CurrentBranching.Infinite = infinite;
270                         ec.EndFlowBranching ();
271
272                         return ok;
273                 }
274                 
275                 protected override void DoEmit (EmitContext ec)
276                 {
277                         ILGenerator ig = ec.ig;
278                         Label loop = ig.DefineLabel ();
279                         Label old_begin = ec.LoopBegin;
280                         Label old_end = ec.LoopEnd;
281                         
282                         ec.LoopBegin = ig.DefineLabel ();
283                         ec.LoopEnd = ig.DefineLabel ();
284                                 
285                         ig.MarkLabel (loop);
286                         EmbeddedStatement.Emit (ec);
287                         ig.MarkLabel (ec.LoopBegin);
288
289                         //
290                         // Dead code elimination
291                         //
292                         if (expr is BoolConstant){
293                                 bool res = ((BoolConstant) expr).Value;
294
295                                 if (res)
296                                         ec.ig.Emit (OpCodes.Br, loop); 
297                         } else
298                                 expr.EmitBranchable (ec, loop, true);
299                         
300                         ig.MarkLabel (ec.LoopEnd);
301
302                         ec.LoopBegin = old_begin;
303                         ec.LoopEnd = old_end;
304                 }
305         }
306
307         public class While : Statement {
308                 public Expression expr;
309                 public readonly Statement Statement;
310                 bool infinite, empty;
311                 
312                 public While (Expression boolExpr, Statement statement, Location l)
313                 {
314                         this.expr = boolExpr;
315                         Statement = statement;
316                         loc = l;
317                 }
318
319                 public override bool Resolve (EmitContext ec)
320                 {
321                         bool ok = true;
322
323                         expr = Expression.ResolveBoolean (ec, expr, loc);
324                         if (expr == null)
325                                 return false;
326
327                         //
328                         // Inform whether we are infinite or not
329                         //
330                         if (expr is BoolConstant){
331                                 BoolConstant bc = (BoolConstant) expr;
332
333                                 if (bc.Value == false){
334                                         if (!Statement.ResolveUnreachable (ec, true))
335                                                 return false;
336                                         empty = true;
337                                         return true;
338                                 } else
339                                         infinite = true;
340                         }
341
342                         ec.StartFlowBranching (FlowBranching.BranchingType.Loop, loc);
343                         if (!infinite)
344                                 ec.CurrentBranching.CreateSibling ();
345
346                         if (!Statement.Resolve (ec))
347                                 ok = false;
348
349                         ec.CurrentBranching.Infinite = infinite;
350                         ec.EndFlowBranching ();
351
352                         return ok;
353                 }
354                 
355                 protected override void DoEmit (EmitContext ec)
356                 {
357                         if (empty)
358                                 return;
359
360                         ILGenerator ig = ec.ig;
361                         Label old_begin = ec.LoopBegin;
362                         Label old_end = ec.LoopEnd;
363                         
364                         ec.LoopBegin = ig.DefineLabel ();
365                         ec.LoopEnd = ig.DefineLabel ();
366
367                         //
368                         // Inform whether we are infinite or not
369                         //
370                         if (expr is BoolConstant){
371                                 ig.MarkLabel (ec.LoopBegin);
372                                 Statement.Emit (ec);
373                                 ig.Emit (OpCodes.Br, ec.LoopBegin);
374                                         
375                                 //
376                                 // Inform that we are infinite (ie, `we return'), only
377                                 // if we do not `break' inside the code.
378                                 //
379                                 ig.MarkLabel (ec.LoopEnd);
380                         } else {
381                                 Label while_loop = ig.DefineLabel ();
382
383                                 ig.Emit (OpCodes.Br, ec.LoopBegin);
384                                 ig.MarkLabel (while_loop);
385
386                                 Statement.Emit (ec);
387                         
388                                 ig.MarkLabel (ec.LoopBegin);
389
390                                 expr.EmitBranchable (ec, while_loop, true);
391                                 
392                                 ig.MarkLabel (ec.LoopEnd);
393                         }       
394
395                         ec.LoopBegin = old_begin;
396                         ec.LoopEnd = old_end;
397                 }
398         }
399
400         public class For : Statement {
401                 Expression Test;
402                 readonly Statement InitStatement;
403                 readonly Statement Increment;
404                 public readonly Statement Statement;
405                 bool infinite, empty;
406                 
407                 public For (Statement initStatement,
408                             Expression test,
409                             Statement increment,
410                             Statement statement,
411                             Location l)
412                 {
413                         InitStatement = initStatement;
414                         Test = test;
415                         Increment = increment;
416                         Statement = statement;
417                         loc = l;
418                 }
419
420                 public override bool Resolve (EmitContext ec)
421                 {
422                         bool ok = true;
423
424                         if (InitStatement != null){
425                                 if (!InitStatement.Resolve (ec))
426                                         ok = false;
427                         }
428
429                         if (Test != null){
430                                 Test = Expression.ResolveBoolean (ec, Test, loc);
431                                 if (Test == null)
432                                         ok = false;
433                                 else if (Test is BoolConstant){
434                                         BoolConstant bc = (BoolConstant) Test;
435
436                                         if (bc.Value == false){
437                                                 if (!Statement.ResolveUnreachable (ec, true))
438                                                         return false;
439                                                 if ((Increment != null) &&
440                                                     !Increment.ResolveUnreachable (ec, false))
441                                                         return false;
442                                                 empty = true;
443                                                 return true;
444                                         } else
445                                                 infinite = true;
446                                 }
447                         } else
448                                 infinite = true;
449
450                         ec.StartFlowBranching (FlowBranching.BranchingType.Loop, loc);
451                         if (!infinite)
452                                 ec.CurrentBranching.CreateSibling ();
453
454                         if (!Statement.Resolve (ec))
455                                 ok = false;
456
457                         if (Increment != null){
458                                 if (!Increment.Resolve (ec))
459                                         ok = false;
460                         }
461
462                         ec.CurrentBranching.Infinite = infinite;
463                         ec.EndFlowBranching ();
464
465                         return ok;
466                 }
467                 
468                 protected override void DoEmit (EmitContext ec)
469                 {
470                         if (empty)
471                                 return;
472
473                         ILGenerator ig = ec.ig;
474                         Label old_begin = ec.LoopBegin;
475                         Label old_end = ec.LoopEnd;
476                         Label loop = ig.DefineLabel ();
477                         Label test = ig.DefineLabel ();
478                         
479                         if (InitStatement != null && InitStatement != EmptyStatement.Value)
480                                 InitStatement.Emit (ec);
481
482                         ec.LoopBegin = ig.DefineLabel ();
483                         ec.LoopEnd = ig.DefineLabel ();
484
485                         ig.Emit (OpCodes.Br, test);
486                         ig.MarkLabel (loop);
487                         Statement.Emit (ec);
488
489                         ig.MarkLabel (ec.LoopBegin);
490                         if (Increment != EmptyStatement.Value)
491                                 Increment.Emit (ec);
492
493                         ig.MarkLabel (test);
494                         //
495                         // If test is null, there is no test, and we are just
496                         // an infinite loop
497                         //
498                         if (Test != null){
499                                 //
500                                 // The Resolve code already catches the case for
501                                 // Test == BoolConstant (false) so we know that
502                                 // this is true
503                                 //
504                                 if (Test is BoolConstant)
505                                         ig.Emit (OpCodes.Br, loop);
506                                 else
507                                         Test.EmitBranchable (ec, loop, true);
508                                 
509                         } else
510                                 ig.Emit (OpCodes.Br, loop);
511                         ig.MarkLabel (ec.LoopEnd);
512
513                         ec.LoopBegin = old_begin;
514                         ec.LoopEnd = old_end;
515                 }
516         }
517         
518         public class StatementExpression : Statement {
519                 ExpressionStatement expr;
520                 
521                 public StatementExpression (ExpressionStatement expr)
522                 {
523                         this.expr = expr;
524                         loc = expr.Location;
525                 }
526
527                 public override bool Resolve (EmitContext ec)
528                 {
529                         if (expr != null)
530                                 expr = expr.ResolveStatement (ec);
531                         return expr != null;
532                 }
533                 
534                 protected override void DoEmit (EmitContext ec)
535                 {
536                         expr.EmitStatement (ec);
537                 }
538
539                 public override string ToString ()
540                 {
541                         return "StatementExpression (" + expr + ")";
542                 }
543         }
544
545         /// <summary>
546         ///   Implements the return statement
547         /// </summary>
548         public class Return : Statement {
549                 public Expression Expr;
550                 
551                 public Return (Expression expr, Location l)
552                 {
553                         Expr = expr;
554                         loc = l;
555                 }
556
557                 bool in_exc;
558
559                 public override bool Resolve (EmitContext ec)
560                 {
561                         AnonymousContainer am = ec.CurrentAnonymousMethod;
562                         if ((am != null) && am.IsIterator && ec.InIterator) {
563                                 Report.Error (1622, loc, "Cannot return a value from iterators. Use the yield return " +
564                                               "statement to return a value, or yield break to end the iteration");
565                                 return false;
566                         }
567
568                         if (ec.ReturnType == null){
569                                 if (Expr != null){
570                                         if (ec.CurrentAnonymousMethod != null){
571                                                 Report.Error (1662, loc,
572                                                         "Cannot convert anonymous method block to delegate type `{0}' because some of the return types in the block are not implicitly convertible to the delegate return type",
573                                                         ec.CurrentAnonymousMethod.GetSignatureForError ());
574                                         }
575                                         Error (127, "A return keyword must not be followed by any expression when method returns void");
576                                         return false;
577                                 }
578                         } else {
579                                 if (Expr == null){
580                                         Error (126, "An object of a type convertible to `{0}' is required " +
581                                                "for the return statement",
582                                                TypeManager.CSharpName (ec.ReturnType));
583                                         return false;
584                                 }
585
586                                 Expr = Expr.Resolve (ec);
587                                 if (Expr == null)
588                                         return false;
589
590                                 if (Expr.Type != ec.ReturnType) {
591                                         Expr = Convert.ImplicitConversionRequired (
592                                                 ec, Expr, ec.ReturnType, loc);
593                                         if (Expr == null)
594                                                 return false;
595                                 }
596                         }
597
598                         FlowBranching.UsageVector vector = ec.CurrentBranching.CurrentUsageVector;
599
600                         if (ec.CurrentBranching.InTryOrCatch (true)) {
601                                 ec.CurrentBranching.AddFinallyVector (vector);
602                                 in_exc = true;
603                         } else if (ec.InFinally) {
604                                 Error (157, "Control cannot leave the body of a finally clause");
605                                 return false;
606                         } else
607                                 vector.CheckOutParameters (ec.CurrentBranching);
608
609                         if (in_exc)
610                                 ec.NeedReturnLabel ();
611
612                         ec.CurrentBranching.CurrentUsageVector.Return ();
613                         return true;
614                 }
615                 
616                 protected override void DoEmit (EmitContext ec)
617                 {
618                         if (Expr != null) {
619                                 Expr.Emit (ec);
620
621                                 if (in_exc)
622                                         ec.ig.Emit (OpCodes.Stloc, ec.TemporaryReturn ());
623                         }
624
625                         if (in_exc)
626                                 ec.ig.Emit (OpCodes.Leave, ec.ReturnLabel);
627                         else
628                                 ec.ig.Emit (OpCodes.Ret);
629                 }
630         }
631
632         public class Goto : Statement {
633                 string target;
634                 LabeledStatement label;
635                 
636                 public override bool Resolve (EmitContext ec)
637                 {
638                         label = ec.CurrentBranching.LookupLabel (target, loc);
639                         if (label == null)
640                                 return false;
641
642                         // If this is a forward goto.
643                         if (!label.IsDefined)
644                                 label.AddUsageVector (ec.CurrentBranching.CurrentUsageVector);
645
646                         ec.CurrentBranching.CurrentUsageVector.Goto ();
647                         label.AddReference ();
648
649                         return true;
650                 }
651                 
652                 public Goto (string label, Location l)
653                 {
654                         loc = l;
655                         target = label;
656                 }
657
658                 public string Target {
659                         get {
660                                 return target;
661                         }
662                 }
663
664                 protected override void DoEmit (EmitContext ec)
665                 {
666                         Label l = label.LabelTarget (ec);
667                         ec.ig.Emit (OpCodes.Br, l);
668                 }
669         }
670
671         public class LabeledStatement : Statement {
672                 bool defined;
673                 bool referenced;
674                 Label label;
675                 ILGenerator ig;
676
677                 FlowBranching.UsageVector vectors;
678                 
679                 public LabeledStatement (string label_name, Location l)
680                 {
681                         this.loc = l;
682                 }
683
684                 public Label LabelTarget (EmitContext ec)
685                 {
686                         if (defined)
687                                 return label;
688                         ig = ec.ig;
689                         label = ec.ig.DefineLabel ();
690                         defined = true;
691
692                         return label;
693                 }
694
695                 public bool IsDefined {
696                         get {
697                                 return defined;
698                         }
699                 }
700
701                 public bool HasBeenReferenced {
702                         get {
703                                 return referenced;
704                         }
705                 }
706
707                 public void AddUsageVector (FlowBranching.UsageVector vector)
708                 {
709                         vector = vector.Clone ();
710                         vector.Next = vectors;
711                         vectors = vector;
712                 }
713
714                 public override bool Resolve (EmitContext ec)
715                 {
716                         ec.CurrentBranching.Label (vectors);
717
718                         return true;
719                 }
720
721                 protected override void DoEmit (EmitContext ec)
722                 {
723                         if (ig != null && ig != ec.ig) {
724                                 // TODO: location is wrong
725                                 Report.Error (1632, loc, "Control cannot leave the body of an anonymous method");
726                                 return;
727                         }
728                         LabelTarget (ec);
729                         ec.ig.MarkLabel (label);
730                 }
731
732                 public void AddReference ()
733                 {
734                         referenced = true;
735                 }
736         }
737         
738
739         /// <summary>
740         ///   `goto default' statement
741         /// </summary>
742         public class GotoDefault : Statement {
743                 
744                 public GotoDefault (Location l)
745                 {
746                         loc = l;
747                 }
748
749                 public override bool Resolve (EmitContext ec)
750                 {
751                         ec.CurrentBranching.CurrentUsageVector.Goto ();
752                         return true;
753                 }
754
755                 protected override void DoEmit (EmitContext ec)
756                 {
757                         if (ec.Switch == null){
758                                 Report.Error (153, loc, "A goto case is only valid inside a switch statement");
759                                 return;
760                         }
761
762                         if (!ec.Switch.GotDefault){
763                                 Report.Error (159, loc, "No such label `default:' within the scope of the goto statement");
764                                 return;
765                         }
766                         ec.ig.Emit (OpCodes.Br, ec.Switch.DefaultTarget);
767                 }
768         }
769
770         /// <summary>
771         ///   `goto case' statement
772         /// </summary>
773         public class GotoCase : Statement {
774                 Expression expr;
775                 SwitchLabel sl;
776                 
777                 public GotoCase (Expression e, Location l)
778                 {
779                         expr = e;
780                         loc = l;
781                 }
782
783                 public override bool Resolve (EmitContext ec)
784                 {
785                         if (ec.Switch == null){
786                                 Report.Error (153, loc, "A goto case is only valid inside a switch statement");
787                                 return false;
788                         }
789
790                         expr = expr.Resolve (ec);
791                         if (expr == null)
792                                 return false;
793
794                         Constant c = expr as Constant;
795                         if (c == null) {
796                                 Error (150, "A constant value is expected");
797                                 return false;
798                         }
799
800                         c = c.ToType (ec.Switch.SwitchType, loc);
801                         if (c == null)
802                                 return false;
803
804                         object val = c.GetValue ();
805                         if (val == null)
806                                 val = SwitchLabel.NullStringCase;
807                                         
808                         sl = (SwitchLabel) ec.Switch.Elements [val];
809
810                         if (sl == null){
811                                 Report.Error (159, loc, "No such label `case {0}:' within the scope of the goto statement", c.GetValue () == null ? "null" : val);
812                                 return false;
813                         }
814
815                         ec.CurrentBranching.CurrentUsageVector.Goto ();
816                         return true;
817                 }
818
819                 protected override void DoEmit (EmitContext ec)
820                 {
821                         ec.ig.Emit (OpCodes.Br, sl.GetILLabelCode (ec));
822                 }
823         }
824         
825         public class Throw : Statement {
826                 Expression expr;
827                 
828                 public Throw (Expression expr, Location l)
829                 {
830                         this.expr = expr;
831                         loc = l;
832                 }
833
834                 public override bool Resolve (EmitContext ec)
835                 {
836                         ec.CurrentBranching.CurrentUsageVector.Throw ();
837
838                         if (expr != null){
839                                 expr = expr.Resolve (ec);
840                                 if (expr == null)
841                                         return false;
842
843                                 ExprClass eclass = expr.eclass;
844
845                                 if (!(eclass == ExprClass.Variable || eclass == ExprClass.PropertyAccess ||
846                                         eclass == ExprClass.Value || eclass == ExprClass.IndexerAccess)) {
847                                         expr.Error_UnexpectedKind (ec, "value, variable, property or indexer access ", loc);
848                                         return false;
849                                 }
850
851                                 Type t = expr.Type;
852                                 
853                                 if ((t != TypeManager.exception_type) &&
854                                         !t.IsSubclassOf (TypeManager.exception_type) &&
855                                         !(expr is NullLiteral)) {
856                                         Error (155,
857                                                 "The type caught or thrown must be derived " +
858                                                 "from System.Exception");
859                                         return false;
860                                 }
861                                 return true;
862                         }
863
864                         if (!ec.InCatch) {
865                                 Error (156, "A throw statement with no arguments is not allowed outside of a catch clause");
866                                 return false;
867                         }
868
869                         if (ec.InFinally) {
870                                 Error (724, "A throw statement with no arguments is not allowed inside of a finally clause nested inside of the innermost catch clause");
871                                 return false;
872                         }
873                         return true;
874                 }
875                         
876                 protected override void DoEmit (EmitContext ec)
877                 {
878                         if (expr == null)
879                                 ec.ig.Emit (OpCodes.Rethrow);
880                         else {
881                                 expr.Emit (ec);
882
883                                 ec.ig.Emit (OpCodes.Throw);
884                         }
885                 }
886         }
887
888         public class Break : Statement {
889                 
890                 public Break (Location l)
891                 {
892                         loc = l;
893                 }
894
895                 bool crossing_exc;
896
897                 public override bool Resolve (EmitContext ec)
898                 {
899                         if (!ec.CurrentBranching.InLoop () && !ec.CurrentBranching.InSwitch ()){
900                                 Error (139, "No enclosing loop out of which to break or continue");
901                                 return false;
902                         } else if (ec.InFinally && ec.CurrentBranching.BreakCrossesTryCatchBoundary()) {
903                                 Error (157, "Control cannot leave the body of a finally clause");
904                                 return false;
905                         } else if (ec.CurrentBranching.InTryOrCatch (false))
906                                 ec.CurrentBranching.AddFinallyVector (
907                                         ec.CurrentBranching.CurrentUsageVector);
908                         else if (ec.CurrentBranching.InLoop () || ec.CurrentBranching.InSwitch ())
909                                 ec.CurrentBranching.AddBreakVector (
910                                         ec.CurrentBranching.CurrentUsageVector);
911
912                         crossing_exc = ec.CurrentBranching.BreakCrossesTryCatchBoundary ();
913
914                         if (!crossing_exc)
915                                 ec.NeedReturnLabel ();
916
917                         ec.CurrentBranching.CurrentUsageVector.Break ();
918                         return true;
919                 }
920
921                 protected override void DoEmit (EmitContext ec)
922                 {
923                         ILGenerator ig = ec.ig;
924
925                         if (crossing_exc)
926                                 ig.Emit (OpCodes.Leave, ec.LoopEnd);
927                         else {
928                                 ig.Emit (OpCodes.Br, ec.LoopEnd);
929                         }
930                 }
931         }
932
933         public class Continue : Statement {
934                 
935                 public Continue (Location l)
936                 {
937                         loc = l;
938                 }
939
940                 bool crossing_exc;
941
942                 public override bool Resolve (EmitContext ec)
943                 {
944                         if (!ec.CurrentBranching.InLoop ()){
945                                 Error (139, "No enclosing loop out of which to break or continue");
946                                 return false;
947                         } else if (ec.InFinally) {
948                                 Error (157, "Control cannot leave the body of a finally clause");
949                                 return false;
950                         } else if (ec.CurrentBranching.InTryOrCatch (false))
951                                 ec.CurrentBranching.AddFinallyVector (ec.CurrentBranching.CurrentUsageVector);
952
953                         crossing_exc = ec.CurrentBranching.BreakCrossesTryCatchBoundary ();
954
955                         ec.CurrentBranching.CurrentUsageVector.Goto ();
956                         return true;
957                 }
958
959                 protected override void DoEmit (EmitContext ec)
960                 {
961                         Label begin = ec.LoopBegin;
962                         
963                         if (crossing_exc)
964                                 ec.ig.Emit (OpCodes.Leave, begin);
965                         else
966                                 ec.ig.Emit (OpCodes.Br, begin);
967                 }
968         }
969
970         //
971         // The information about a user-perceived local variable
972         //
973         public class LocalInfo {
974                 public Expression Type;
975
976                 //
977                 // Most of the time a variable will be stored in a LocalBuilder
978                 //
979                 // But sometimes, it will be stored in a field (variables that have been
980                 // hoisted by iterators or by anonymous methods).  The context of the field will
981                 // be stored in the EmitContext
982                 //
983                 //
984                 public LocalBuilder LocalBuilder;
985                 public FieldBuilder FieldBuilder;
986
987                 public Type VariableType;
988                 public readonly string Name;
989                 public readonly Location Location;
990                 public readonly Block Block;
991
992                 public VariableInfo VariableInfo;
993
994                 enum Flags : byte {
995                         Used = 1,
996                         ReadOnly = 2,
997                         Pinned = 4,
998                         IsThis = 8,
999                         Captured = 16,
1000                         AddressTaken = 32,
1001                         CompilerGenerated = 64
1002                 }
1003
1004                 public enum ReadOnlyContext: byte {
1005                         Using,
1006                         Foreach,
1007                         Fixed
1008                 }
1009
1010                 Flags flags;
1011                 ReadOnlyContext ro_context;
1012                 
1013                 public LocalInfo (Expression type, string name, Block block, Location l)
1014                 {
1015                         Type = type;
1016                         Name = name;
1017                         Block = block;
1018                         Location = l;
1019                 }
1020
1021                 public LocalInfo (TypeContainer tc, Block block, Location l)
1022                 {
1023                         VariableType = tc.TypeBuilder;
1024                         Block = block;
1025                         Location = l;
1026                 }
1027
1028                 public bool IsThisAssigned (EmitContext ec, Location loc)
1029                 {
1030                         if (VariableInfo == null)
1031                                 throw new Exception ();
1032
1033                         if (!ec.DoFlowAnalysis || ec.CurrentBranching.IsAssigned (VariableInfo))
1034                                 return true;
1035
1036                         return VariableInfo.TypeInfo.IsFullyInitialized (ec.CurrentBranching, VariableInfo, loc);
1037                 }
1038
1039                 public bool IsAssigned (EmitContext ec)
1040                 {
1041                         if (VariableInfo == null)
1042                                 throw new Exception ();
1043
1044                         return !ec.DoFlowAnalysis || ec.CurrentBranching.IsAssigned (VariableInfo);
1045                 }
1046
1047                 public bool Resolve (EmitContext ec)
1048                 {
1049                         if (VariableType == null) {
1050                                 TypeExpr texpr = Type.ResolveAsTypeTerminal (ec, false);
1051                                 if (texpr == null)
1052                                         return false;
1053                                 
1054                                 VariableType = texpr.ResolveType (ec);
1055                         }
1056
1057                         if (VariableType == TypeManager.void_type) {
1058                                 Report.Error (1547, Location,
1059                                               "Keyword 'void' cannot be used in this context");
1060                                 return false;
1061                         }
1062
1063                         if (VariableType.IsAbstract && VariableType.IsSealed) {
1064                                 Report.Error (723, Location, "Cannot declare variable of static type `{0}'", TypeManager.CSharpName (VariableType));
1065                                 return false;
1066                         }
1067
1068                         if (VariableType.IsPointer && !ec.InUnsafe)
1069                                 Expression.UnsafeError (Location);
1070
1071                         return true;
1072                 }
1073
1074                 public bool IsCaptured {
1075                         get {
1076                                 return (flags & Flags.Captured) != 0;
1077                         }
1078
1079                         set {
1080                                 flags |= Flags.Captured;
1081                         }
1082                 }
1083
1084                 public bool AddressTaken {
1085                         get {
1086                                 return (flags & Flags.AddressTaken) != 0;
1087                         }
1088
1089                         set {
1090                                 flags |= Flags.AddressTaken;
1091                         }
1092                 }
1093
1094                 public bool CompilerGenerated {
1095                         get {
1096                                 return (flags & Flags.CompilerGenerated) != 0;
1097                         }
1098
1099                         set {
1100                                 flags |= Flags.CompilerGenerated;
1101                         }
1102                 }
1103
1104                 public override string ToString ()
1105                 {
1106                         return String.Format ("LocalInfo ({0},{1},{2},{3})",
1107                                               Name, Type, VariableInfo, Location);
1108                 }
1109
1110                 public bool Used {
1111                         get {
1112                                 return (flags & Flags.Used) != 0;
1113                         }
1114                         set {
1115                                 flags = value ? (flags | Flags.Used) : (unchecked (flags & ~Flags.Used));
1116                         }
1117                 }
1118
1119                 public bool ReadOnly {
1120                         get {
1121                                 return (flags & Flags.ReadOnly) != 0;
1122                         }
1123                 }
1124
1125                 public void SetReadOnlyContext (ReadOnlyContext context)
1126                 {
1127                         flags |= Flags.ReadOnly;
1128                         ro_context = context;
1129                 }
1130
1131                 public string GetReadOnlyContext ()
1132                 {
1133                         if (!ReadOnly)
1134                                 throw new InternalErrorException ("Variable is not readonly");
1135
1136                         switch (ro_context) {
1137                                 case ReadOnlyContext.Fixed:
1138                                         return "fixed variable";
1139                                 case ReadOnlyContext.Foreach:
1140                                         return "foreach iteration variable";
1141                                 case ReadOnlyContext.Using:
1142                                         return "using variable";
1143                         }
1144                         throw new NotImplementedException ();
1145                 }
1146
1147                 //
1148                 // Whether the variable is pinned, if Pinned the variable has been 
1149                 // allocated in a pinned slot with DeclareLocal.
1150                 //
1151                 public bool Pinned {
1152                         get {
1153                                 return (flags & Flags.Pinned) != 0;
1154                         }
1155                         set {
1156                                 flags = value ? (flags | Flags.Pinned) : (flags & ~Flags.Pinned);
1157                         }
1158                 }
1159
1160                 public bool IsThis {
1161                         get {
1162                                 return (flags & Flags.IsThis) != 0;
1163                         }
1164                         set {
1165                                 flags = value ? (flags | Flags.IsThis) : (flags & ~Flags.IsThis);
1166                         }
1167                 }
1168         }
1169                 
1170         /// <summary>
1171         ///   Block represents a C# block.
1172         /// </summary>
1173         ///
1174         /// <remarks>
1175         ///   This class is used in a number of places: either to represent
1176         ///   explicit blocks that the programmer places or implicit blocks.
1177         ///
1178         ///   Implicit blocks are used as labels or to introduce variable
1179         ///   declarations.
1180         ///
1181         ///   Top-level blocks derive from Block, and they are called ToplevelBlock
1182         ///   they contain extra information that is not necessary on normal blocks.
1183         /// </remarks>
1184         public class Block : Statement {
1185                 public Block    Parent;
1186                 public readonly Location  StartLocation;
1187                 public Location EndLocation = Location.Null;
1188
1189                 public readonly ToplevelBlock Toplevel;
1190
1191                 [Flags]
1192                 public enum Flags : ushort {
1193                         Implicit  = 1,
1194                         Unchecked = 2,
1195                         BlockUsed = 4,
1196                         VariablesInitialized = 8,
1197                         HasRet = 16,
1198                         IsDestructor = 32,
1199                         IsToplevel = 64,
1200                         Unsafe = 128,
1201                         HasVarargs = 256 // Used in ToplevelBlock
1202                 }
1203                 protected Flags flags;
1204
1205                 public bool Implicit {
1206                         get { return (flags & Flags.Implicit) != 0; }
1207                 }
1208
1209                 public bool Unchecked {
1210                         get { return (flags & Flags.Unchecked) != 0; }
1211                         set { flags |= Flags.Unchecked; }
1212                 }
1213
1214                 public bool Unsafe {
1215                         get { return (flags & Flags.Unsafe) != 0; }
1216                         set { flags |= Flags.Unsafe; }
1217                 }
1218
1219                 //
1220                 // The statements in this block
1221                 //
1222                 ArrayList statements;
1223                 int num_statements;
1224
1225                 //
1226                 // An array of Blocks.  We keep track of children just
1227                 // to generate the local variable declarations.
1228                 //
1229                 // Statements and child statements are handled through the
1230                 // statements.
1231                 //
1232                 ArrayList children;
1233
1234                 //
1235                 // Labels.  (label, block) pairs.
1236                 //
1237                 Hashtable labels;
1238
1239                 //
1240                 // Keeps track of (name, type) pairs
1241                 //
1242                 Hashtable variables;
1243
1244                 //
1245                 // Keeps track of constants
1246                 Hashtable constants;
1247
1248                 //
1249                 // Temporary variables.
1250                 //
1251                 ArrayList temporary_variables;
1252                 
1253                 //
1254                 // If this is a switch section, the enclosing switch block.
1255                 //
1256                 Block switch_block;
1257
1258                 protected static int id;
1259
1260                 int this_id;
1261                 
1262                 public Block (Block parent)
1263                         : this (parent, (Flags) 0, Location.Null, Location.Null)
1264                 { }
1265
1266                 public Block (Block parent, Flags flags)
1267                         : this (parent, flags, Location.Null, Location.Null)
1268                 { }
1269
1270                 public Block (Block parent, Location start, Location end)
1271                         : this (parent, (Flags) 0, start, end)
1272                 { }
1273
1274                 public Block (Block parent, Flags flags, Location start, Location end)
1275                 {
1276                         if (parent != null)
1277                                 parent.AddChild (this);
1278                         
1279                         this.Parent = parent;
1280                         this.flags = flags;
1281                         this.StartLocation = start;
1282                         this.EndLocation = end;
1283                         this.loc = start;
1284                         this_id = id++;
1285                         statements = new ArrayList ();
1286
1287                         if ((flags & Flags.IsToplevel) != 0)
1288                                 Toplevel = (ToplevelBlock) this;
1289                         else
1290                                 Toplevel = parent.Toplevel;
1291
1292                         if (parent != null && Implicit) {
1293                                 if (parent.known_variables == null)
1294                                         parent.known_variables = new Hashtable ();
1295                                 // share with parent
1296                                 known_variables = parent.known_variables;
1297                         }
1298                                 
1299                 }
1300
1301                 public Block CreateSwitchBlock (Location start)
1302                 {
1303                         Block new_block = new Block (this, start, start);
1304                         new_block.switch_block = this;
1305                         return new_block;
1306                 }
1307
1308                 public int ID {
1309                         get { return this_id; }
1310                 }
1311
1312                 protected Hashtable Variables {
1313                         get {
1314                                 if (variables == null)
1315                                         variables = new Hashtable ();
1316                                 return variables;
1317                         }
1318                 }
1319
1320                 void AddChild (Block b)
1321                 {
1322                         if (children == null)
1323                                 children = new ArrayList ();
1324                         
1325                         children.Add (b);
1326                 }
1327
1328                 public void SetEndLocation (Location loc)
1329                 {
1330                         EndLocation = loc;
1331                 }
1332
1333                 /// <summary>
1334                 ///   Adds a label to the current block. 
1335                 /// </summary>
1336                 ///
1337                 /// <returns>
1338                 ///   false if the name already exists in this block. true
1339                 ///   otherwise.
1340                 /// </returns>
1341                 ///
1342                 public bool AddLabel (string name, LabeledStatement target, Location loc)
1343                 {
1344                         if (switch_block != null)
1345                                 return switch_block.AddLabel (name, target, loc);
1346
1347                         Block cur = this;
1348                         while (cur != null) {
1349                                 if (cur.DoLookupLabel (name) != null) {
1350                                         Report.Error (
1351                                                 140, loc, "The label `{0}' is a duplicate",
1352                                                 name);
1353                                         return false;
1354                                 }
1355
1356                                 if (!Implicit)
1357                                         break;
1358
1359                                 cur = cur.Parent;
1360                         }
1361
1362                         while (cur != null) {
1363                                 if (cur.DoLookupLabel (name) != null) {
1364                                         Report.Error (
1365                                                 158, loc,
1366                                                 "The label `{0}' shadows another label " +
1367                                                 "by the same name in a contained scope.",
1368                                                 name);
1369                                         return false;
1370                                 }
1371
1372                                 if (children != null) {
1373                                         foreach (Block b in children) {
1374                                                 LabeledStatement s = b.DoLookupLabel (name);
1375                                                 if (s == null)
1376                                                         continue;
1377
1378                                                 Report.Error (
1379                                                         158, s.loc,
1380                                                         "The label `{0}' shadows another " +
1381                                                         "label by the same name in a " +
1382                                                         "contained scope.",
1383                                                         name);
1384                                                 return false;
1385                                         }
1386                                 }
1387
1388
1389                                 cur = cur.Parent;
1390                         }
1391
1392                         if (labels == null)
1393                                 labels = new Hashtable ();
1394
1395                         labels.Add (name, target);
1396                         return true;
1397                 }
1398
1399                 public LabeledStatement LookupLabel (string name)
1400                 {
1401                         LabeledStatement s = DoLookupLabel (name);
1402                         if (s != null)
1403                                 return s;
1404
1405                         if (children == null)
1406                                 return null;
1407
1408                         foreach (Block child in children) {
1409                                 if (!child.Implicit)
1410                                         continue;
1411
1412                                 s = child.LookupLabel (name);
1413                                 if (s != null)
1414                                         return s;
1415                         }
1416
1417                         return null;
1418                 }
1419
1420                 LabeledStatement DoLookupLabel (string name)
1421                 {
1422                         if (switch_block != null)
1423                                 return switch_block.LookupLabel (name);
1424
1425                         if (labels != null)
1426                                 if (labels.Contains (name))
1427                                         return ((LabeledStatement) labels [name]);
1428
1429                         return null;
1430                 }
1431
1432                 Hashtable known_variables;
1433
1434                 // <summary>
1435                 //   Marks a variable with name @name as being used in this or a child block.
1436                 //   If a variable name has been used in a child block, it's illegal to
1437                 //   declare a variable with the same name in the current block.
1438                 // </summary>
1439                 void AddKnownVariable (string name, LocalInfo info)
1440                 {
1441                         if (known_variables == null)
1442                                 known_variables = new Hashtable ();
1443
1444                         known_variables [name] = info;
1445                 }
1446
1447                 LocalInfo GetKnownVariableInfo (string name)
1448                 {
1449                         if (known_variables == null)
1450                                 return null;
1451                         return (LocalInfo) known_variables [name];
1452                 }
1453
1454                 public bool CheckInvariantMeaningInBlock (string name, Expression e, Location loc)
1455                 {
1456                         Block b = this;
1457                         LocalInfo kvi = b.GetKnownVariableInfo (name);
1458                         while (kvi == null) {
1459                                 while (b.Implicit)
1460                                         b = b.Parent;
1461                                 b = b.Parent;
1462                                 if (b == null)
1463                                         return true;
1464                                 kvi = b.GetKnownVariableInfo (name);
1465                         }
1466
1467                         if (kvi.Block == b)
1468                                 return true;
1469
1470                         // Is kvi.Block nested inside 'b'
1471                         if (b.known_variables != kvi.Block.known_variables) {
1472                                 //
1473                                 // If a variable by the same name it defined in a nested block of this
1474                                 // block, we violate the invariant meaning in a block.
1475                                 //
1476                                 if (b == this) {
1477                                         Report.SymbolRelatedToPreviousError (kvi.Location, name);
1478                                         Report.Error (135, loc, "`{0}' conflicts with a declaration in a child block", name);
1479                                         return false;
1480                                 }
1481
1482                                 //
1483                                 // It's ok if the definition is in a nested subblock of b, but not
1484                                 // nested inside this block -- a definition in a sibling block
1485                                 // should not affect us.
1486                                 //
1487                                 return true;
1488                         }
1489
1490                         //
1491                         // Block 'b' and kvi.Block are the same textual block.
1492                         // However, different variables are extant.
1493                         //
1494                         // Check if the variable is in scope in both blocks.  We use
1495                         // an indirect check that depends on AddVariable doing its
1496                         // part in maintaining the invariant-meaning-in-block property.
1497                         //
1498                         if (e is LocalVariableReference || (e is Constant && b.GetLocalInfo (name) != null))
1499                                 return true;
1500
1501                         //
1502                         // Even though we detected the error when the name is used, we
1503                         // treat it as if the variable declaration was in error.
1504                         //
1505                         Report.SymbolRelatedToPreviousError (loc, name);
1506                         Error_AlreadyDeclared (kvi.Location, name, "parent or current");
1507                         return false;
1508                 }
1509
1510                 public LocalInfo AddVariable (Expression type, string name, Location l)
1511                 {
1512                         LocalInfo vi = GetLocalInfo (name);
1513                         if (vi != null) {
1514                                 Report.SymbolRelatedToPreviousError (vi.Location, name);
1515                                 if (known_variables == vi.Block.known_variables)
1516                                         Report.Error (128, l,
1517                                                 "A local variable named `{0}' is already defined in this scope", name);
1518                                 else
1519                                         Error_AlreadyDeclared (l, name, "parent");
1520                                 return null;
1521                         }
1522
1523                         vi = GetKnownVariableInfo (name);
1524                         if (vi != null) {
1525                                 Report.SymbolRelatedToPreviousError (vi.Location, name);
1526                                 Error_AlreadyDeclared (l, name, "child");
1527                                 return null;
1528                         }
1529
1530                         int idx;
1531                         Parameter p = Toplevel.Parameters.GetParameterByName (name, out idx);
1532                         if (p != null) {
1533                                 Report.SymbolRelatedToPreviousError (p.Location, name);
1534                                 Error_AlreadyDeclared (l, name, "method argument");
1535                                 return null;
1536                         }
1537
1538                         vi = new LocalInfo (type, name, this, l);
1539
1540                         Variables.Add (name, vi);
1541
1542                         for (Block b = this; b != null; b = b.Parent)
1543                                 b.AddKnownVariable (name, vi);
1544
1545                         if ((flags & Flags.VariablesInitialized) != 0)
1546                                 throw new Exception ();
1547
1548                         return vi;
1549                 }
1550
1551                 void Error_AlreadyDeclared (Location loc, string var, string reason)
1552                 {
1553                         Report.Error (136, loc, "A local variable named `{0}' cannot be declared in this scope because it would give a different meaning to `{0}', " +
1554                                 "which is already used in a `{1}' scope", var, reason);
1555                 }
1556
1557                 public bool AddConstant (Expression type, string name, Expression value, Location l)
1558                 {
1559                         if (AddVariable (type, name, l) == null)
1560                                 return false;
1561                         
1562                         if (constants == null)
1563                                 constants = new Hashtable ();
1564
1565                         constants.Add (name, value);
1566
1567                         // A block is considered used if we perform an initialization in a local declaration, even if it is constant.
1568                         Use ();
1569                         return true;
1570                 }
1571
1572                 static int next_temp_id = 0;
1573
1574                 public LocalInfo AddTemporaryVariable (TypeExpr te, Location loc)
1575                 {
1576                         if (temporary_variables == null)
1577                                 temporary_variables = new ArrayList ();
1578
1579                         int id = ++next_temp_id;
1580                         string name = "$s_" + id.ToString ();
1581
1582                         LocalInfo li = new LocalInfo (te, name, this, loc);
1583                         li.CompilerGenerated = true;
1584                         temporary_variables.Add (li);
1585                         return li;
1586                 }
1587
1588                 public LocalInfo GetLocalInfo (string name)
1589                 {
1590                         for (Block b = this; b != null; b = b.Parent) {
1591                                 if (b.variables != null) {
1592                                         LocalInfo ret = b.variables [name] as LocalInfo;
1593                                         if (ret != null)
1594                                                 return ret;
1595                                 }
1596                         }
1597                         return null;
1598                 }
1599
1600                 public Expression GetVariableType (string name)
1601                 {
1602                         LocalInfo vi = GetLocalInfo (name);
1603                         return vi == null ? null : vi.Type;
1604                 }
1605
1606                 public Expression GetConstantExpression (string name)
1607                 {
1608                         for (Block b = this; b != null; b = b.Parent) {
1609                                 if (b.constants != null) {
1610                                         Expression ret = b.constants [name] as Expression;
1611                                         if (ret != null)
1612                                                 return ret;
1613                                 }
1614                         }
1615                         return null;
1616                 }
1617                 
1618                 /// <summary>
1619                 ///   True if the variable named @name is a constant
1620                 ///  </summary>
1621                 public bool IsConstant (string name)
1622                 {
1623                         Expression e = GetConstantExpression (name);
1624                         return e != null;
1625                 }
1626
1627                 public void AddStatement (Statement s)
1628                 {
1629                         statements.Add (s);
1630                         flags |= Flags.BlockUsed;
1631                 }
1632
1633                 public bool Used {
1634                         get { return (flags & Flags.BlockUsed) != 0; }
1635                 }
1636
1637                 public void Use ()
1638                 {
1639                         flags |= Flags.BlockUsed;
1640                 }
1641
1642                 public bool HasRet {
1643                         get { return (flags & Flags.HasRet) != 0; }
1644                 }
1645
1646                 public bool IsDestructor {
1647                         get { return (flags & Flags.IsDestructor) != 0; }
1648                 }
1649
1650                 public void SetDestructor ()
1651                 {
1652                         flags |= Flags.IsDestructor;
1653                 }
1654
1655                 VariableMap param_map, local_map;
1656
1657                 public VariableMap ParameterMap {
1658                         get {
1659                                 if ((flags & Flags.VariablesInitialized) == 0)
1660                                         throw new Exception ("Variables have not been initialized yet");
1661
1662                                 return param_map;
1663                         }
1664                 }
1665
1666                 public VariableMap LocalMap {
1667                         get {
1668                                 if ((flags & Flags.VariablesInitialized) == 0)
1669                                         throw new Exception ("Variables have not been initialized yet");
1670
1671                                 return local_map;
1672                         }
1673                 }
1674
1675                 /// <summary>
1676                 ///   Emits the variable declarations and labels.
1677                 /// </summary>
1678                 /// <remarks>
1679                 ///   tc: is our typecontainer (to resolve type references)
1680                 ///   ig: is the code generator:
1681                 /// </remarks>
1682                 public void ResolveMeta (ToplevelBlock toplevel, EmitContext ec, InternalParameters ip)
1683                 {
1684                         bool old_unsafe = ec.InUnsafe;
1685
1686                         // If some parent block was unsafe, we remain unsafe even if this block
1687                         // isn't explicitly marked as such.
1688                         ec.InUnsafe |= Unsafe;
1689
1690                         //
1691                         // Compute the VariableMap's.
1692                         //
1693                         // Unfortunately, we don't know the type when adding variables with
1694                         // AddVariable(), so we need to compute this info here.
1695                         //
1696
1697                         LocalInfo[] locals;
1698                         if (variables != null) {
1699                                 foreach (LocalInfo li in variables.Values)
1700                                         li.Resolve (ec);
1701
1702                                 locals = new LocalInfo [variables.Count];
1703                                 variables.Values.CopyTo (locals, 0);
1704                         } else
1705                                 locals = new LocalInfo [0];
1706
1707                         if (Parent != null)
1708                                 local_map = new VariableMap (Parent.LocalMap, locals);
1709                         else
1710                                 local_map = new VariableMap (locals);
1711
1712                         param_map = new VariableMap (ip);
1713                         flags |= Flags.VariablesInitialized;
1714
1715                         bool old_check_state = ec.ConstantCheckState;
1716                         ec.ConstantCheckState = (flags & Flags.Unchecked) == 0;
1717                         
1718                         //
1719                         // Process this block variables
1720                         //
1721                         if (variables != null){
1722                                 foreach (DictionaryEntry de in variables){
1723                                         string name = (string) de.Key;
1724                                         LocalInfo vi = (LocalInfo) de.Value;
1725                                         
1726                                         if (vi.VariableType == null)
1727                                                 continue;
1728
1729                                         Type variable_type = vi.VariableType;
1730
1731                                         if (variable_type.IsPointer){
1732                                                 //
1733                                                 // Am not really convinced that this test is required (Microsoft does it)
1734                                                 // but the fact is that you would not be able to use the pointer variable
1735                                                 // *anyways*
1736                                                 //
1737                                                 if (!TypeManager.VerifyUnManaged (TypeManager.GetElementType (variable_type),
1738                                                                                   vi.Location))
1739                                                         continue;
1740                                         }
1741
1742                                         if (constants == null)
1743                                                 continue;
1744
1745                                         Expression cv = (Expression) constants [name];
1746                                         if (cv == null)
1747                                                 continue;
1748
1749                                         // Don't let 'const int Foo = Foo;' succeed.
1750                                         // Removing the name from 'constants' ensures that we get a LocalVariableReference below,
1751                                         // which in turn causes the 'must be constant' error to be triggered.
1752                                         constants.Remove (name);
1753
1754                                         ec.CurrentBlock = this;
1755                                         Expression e = cv.Resolve (ec);
1756                                         if (e == null)
1757                                                 continue;
1758
1759                                         Constant ce = e as Constant;
1760                                         if (ce == null){
1761                                                 Const.Error_ExpressionMustBeConstant (vi.Location, name);
1762                                                 continue;
1763                                         }
1764
1765                                         e = ce.ToType (variable_type, vi.Location);
1766                                         if (e == null)
1767                                                 continue;
1768
1769                                         constants.Add (name, e);
1770                                 }
1771                         }
1772                         ec.ConstantCheckState = old_check_state;
1773
1774                         //
1775                         // Now, handle the children
1776                         //
1777                         if (children != null){
1778                                 foreach (Block b in children)
1779                                         b.ResolveMeta (toplevel, ec, ip);
1780                         }
1781                         ec.InUnsafe = old_unsafe;
1782                 }
1783
1784                 //
1785                 // Emits the local variable declarations for a block
1786                 //
1787                 public void EmitMeta (EmitContext ec)
1788                 {
1789                         ILGenerator ig = ec.ig;
1790                         
1791                         if (variables != null){
1792                                 bool have_captured_vars = ec.HaveCapturedVariables ();
1793                                 
1794                                 foreach (DictionaryEntry de in variables){
1795                                         LocalInfo vi = (LocalInfo) de.Value;
1796
1797                                         if (have_captured_vars && ec.IsCaptured (vi))
1798                                                 continue;
1799
1800                                         if (vi.Pinned)
1801                                                 //
1802                                                 // This is needed to compile on both .NET 1.x and .NET 2.x
1803                                                 // the later introduced `DeclareLocal (Type t, bool pinned)'
1804                                                 //
1805                                                 vi.LocalBuilder = TypeManager.DeclareLocalPinned (ig, vi.VariableType);
1806                                         else if (!vi.IsThis)
1807                                                 vi.LocalBuilder = ig.DeclareLocal (vi.VariableType);
1808                                 }
1809                         }
1810
1811                         if (temporary_variables != null) {
1812                                 AnonymousContainer am = ec.CurrentAnonymousMethod;
1813                                 TypeBuilder scope = null;
1814                                 if ((am != null) && am.IsIterator) {
1815                                         scope = am.Scope.ScopeTypeBuilder;
1816                                         if (scope == null)
1817                                                 throw new InternalErrorException ();
1818                                 }
1819                                 foreach (LocalInfo vi in temporary_variables) {
1820                                         if (scope != null) {
1821                                                 if (vi.FieldBuilder == null)
1822                                                         vi.FieldBuilder = scope.DefineField (
1823                                                                 vi.Name, vi.VariableType, FieldAttributes.Assembly);
1824                                         } else
1825                                                 vi.LocalBuilder = ig.DeclareLocal (vi.VariableType);
1826                                 }
1827                         }
1828
1829                         if (children != null){
1830                                 foreach (Block b in children)
1831                                         b.EmitMeta (ec);
1832                         }
1833                 }
1834
1835                 void UsageWarning (FlowBranching.UsageVector vector)
1836                 {
1837                         string name;
1838
1839                         if ((variables != null) && (RootContext.WarningLevel >= 3)) {
1840                                 foreach (DictionaryEntry de in variables){
1841                                         LocalInfo vi = (LocalInfo) de.Value;
1842                                         
1843                                         if (vi.Used)
1844                                                 continue;
1845                                         
1846                                         name = (string) de.Key;
1847
1848                                         if (vector.IsAssigned (vi.VariableInfo)){
1849                                                 Report.Warning (219, vi.Location, "The variable `{0}' is assigned but its value is never used", name);
1850                                         } else {
1851                                                 Report.Warning (168, vi.Location, "The variable `{0}' is declared but never used", name);
1852                                         }
1853                                 }
1854                         }
1855                 }
1856
1857                 bool unreachable_shown;
1858                 bool unreachable;
1859
1860                 private void CheckPossibleMistakenEmptyStatement (Statement s)
1861                 {
1862                         Statement body;
1863
1864                         // Some statements are wrapped by a Block. Since
1865                         // others' internal could be changed, here I treat
1866                         // them as possibly wrapped by Block equally.
1867                         Block b = s as Block;
1868                         if (b != null && b.statements.Count == 1)
1869                                 s = (Statement) b.statements [0];
1870
1871                         if (s is Lock)
1872                                 body = ((Lock) s).Statement;
1873                         else if (s is For)
1874                                 body = ((For) s).Statement;
1875                         else if (s is Foreach)
1876                                 body = ((Foreach) s).Statement;
1877                         else if (s is While)
1878                                 body = ((While) s).Statement;
1879                         else if (s is Using)
1880                                 body = ((Using) s).Statement;
1881                         else if (s is Fixed)
1882                                 body = ((Fixed) s).Statement;
1883                         else
1884                                 return;
1885
1886                         if (body == null || body is EmptyStatement)
1887                                 Report.Warning (642, 3, s.loc, "Possible mistaken empty statement");
1888                 }
1889
1890                 public override bool Resolve (EmitContext ec)
1891                 {
1892                         Block prev_block = ec.CurrentBlock;
1893                         bool ok = true;
1894
1895                         int errors = Report.Errors;
1896
1897                         ec.CurrentBlock = this;
1898                         ec.StartFlowBranching (this);
1899
1900                         Report.Debug (4, "RESOLVE BLOCK", StartLocation, ec.CurrentBranching);
1901
1902                         int statement_count = statements.Count;
1903                         for (int ix = 0; ix < statement_count; ix++){
1904                                 Statement s = (Statement) statements [ix];
1905                                 // Check possible empty statement (CS0642)
1906                                 if (RootContext.WarningLevel >= 3 &&
1907                                         ix + 1 < statement_count &&
1908                                                 statements [ix + 1] is Block)
1909                                         CheckPossibleMistakenEmptyStatement (s);
1910
1911                                 //
1912                                 // Warn if we detect unreachable code.
1913                                 //
1914                                 if (unreachable) {
1915                                         if (s is Block)
1916                                                 ((Block) s).unreachable = true;
1917
1918                                         if (!unreachable_shown && (RootContext.WarningLevel >= 2)) {
1919                                                 Report.Warning (
1920                                                         162, s.loc, "Unreachable code detected");
1921                                                 unreachable_shown = true;
1922                                         }
1923                                 }
1924
1925                                 //
1926                                 // Note that we're not using ResolveUnreachable() for unreachable
1927                                 // statements here.  ResolveUnreachable() creates a temporary
1928                                 // flow branching and kills it afterwards.  This leads to problems
1929                                 // if you have two unreachable statements where the first one
1930                                 // assigns a variable and the second one tries to access it.
1931                                 //
1932
1933                                 if (!s.Resolve (ec)) {
1934                                         ok = false;
1935                                         statements [ix] = EmptyStatement.Value;
1936                                         continue;
1937                                 }
1938
1939                                 if (unreachable && !(s is LabeledStatement) && !(s is Block))
1940                                         statements [ix] = EmptyStatement.Value;
1941
1942                                 num_statements = ix + 1;
1943                                 if (s is LabeledStatement)
1944                                         unreachable = false;
1945                                 else
1946                                         unreachable = ec.CurrentBranching.CurrentUsageVector.Reachability.IsUnreachable;
1947                         }
1948
1949                         Report.Debug (4, "RESOLVE BLOCK DONE", StartLocation,
1950                                       ec.CurrentBranching, statement_count, num_statements);
1951
1952                         FlowBranching.UsageVector vector = ec.DoEndFlowBranching ();
1953
1954                         ec.CurrentBlock = prev_block;
1955
1956                         // If we're a non-static `struct' constructor which doesn't have an
1957                         // initializer, then we must initialize all of the struct's fields.
1958                         if ((flags & Flags.IsToplevel) != 0 && 
1959                             !Toplevel.IsThisAssigned (ec) &&
1960                             vector.Reachability.Throws != FlowBranching.FlowReturns.Always)
1961                                 ok = false;
1962
1963                         if ((labels != null) && (RootContext.WarningLevel >= 2)) {
1964                                 foreach (LabeledStatement label in labels.Values)
1965                                         if (!label.HasBeenReferenced)
1966                                                 Report.Warning (164, label.loc,
1967                                                                 "This label has not been referenced");
1968                         }
1969
1970                         Report.Debug (4, "RESOLVE BLOCK DONE #2", StartLocation, vector);
1971
1972                         if ((vector.Reachability.Returns == FlowBranching.FlowReturns.Always) ||
1973                             (vector.Reachability.Throws == FlowBranching.FlowReturns.Always) ||
1974                             (vector.Reachability.Reachable == FlowBranching.FlowReturns.Never))
1975                                 flags |= Flags.HasRet;
1976
1977                         if (ok && (errors == Report.Errors)) {
1978                                 if (RootContext.WarningLevel >= 3)
1979                                         UsageWarning (vector);
1980                         }
1981
1982                         return ok;
1983                 }
1984
1985                 public override bool ResolveUnreachable (EmitContext ec, bool warn)
1986                 {
1987                         unreachable_shown = true;
1988                         unreachable = true;
1989
1990                         if (warn && (RootContext.WarningLevel >= 2))
1991                                 Report.Warning (162, loc, "Unreachable code detected");
1992
1993                         ec.StartFlowBranching (FlowBranching.BranchingType.Block, loc);
1994                         bool ok = Resolve (ec);
1995                         ec.KillFlowBranching ();
1996
1997                         return ok;
1998                 }
1999                 
2000                 protected override void DoEmit (EmitContext ec)
2001                 {
2002                         for (int ix = 0; ix < num_statements; ix++){
2003                                 Statement s = (Statement) statements [ix];
2004
2005                                 // Check whether we are the last statement in a
2006                                 // top-level block.
2007
2008                                 if (((Parent == null) || Implicit) && (ix+1 == num_statements) && !(s is Block))
2009                                         ec.IsLastStatement = true;
2010                                 else
2011                                         ec.IsLastStatement = false;
2012
2013                                 s.Emit (ec);
2014                         }
2015                 }
2016
2017                 public override void Emit (EmitContext ec)
2018                 {
2019                         Block prev_block = ec.CurrentBlock;
2020
2021                         ec.CurrentBlock = this;
2022
2023                         bool emit_debug_info = (CodeGen.SymbolWriter != null);
2024                         bool is_lexical_block = !Implicit && (Parent != null);
2025
2026                         if (emit_debug_info) {
2027                                 if (is_lexical_block)
2028                                         ec.BeginScope ();
2029
2030                                 if (variables != null) {
2031                                         foreach (DictionaryEntry de in variables) {
2032                                                 string name = (string) de.Key;
2033                                                 LocalInfo vi = (LocalInfo) de.Value;
2034
2035                                                 if (vi.LocalBuilder == null)
2036                                                         continue;
2037
2038                                                 ec.DefineLocalVariable (name, vi.LocalBuilder);
2039                                         }
2040                                 }
2041                         }
2042
2043                         ec.Mark (StartLocation, true);
2044                         DoEmit (ec);
2045                         ec.Mark (EndLocation, true); 
2046
2047                         if (emit_debug_info && is_lexical_block)
2048                                 ec.EndScope ();
2049
2050                         ec.CurrentBlock = prev_block;
2051                 }
2052
2053                 //
2054                 // Returns true if we ar ea child of `b'.
2055                 //
2056                 public bool IsChildOf (Block b)
2057                 {
2058                         Block current = this;
2059                         
2060                         do {
2061                                 if (current.Parent == b)
2062                                         return true;
2063                                 current = current.Parent;
2064                         } while (current != null);
2065                         return false;
2066                 }
2067
2068                 public override string ToString ()
2069                 {
2070                         return String.Format ("{0} ({1}:{2})", GetType (),ID, StartLocation);
2071                 }
2072         }
2073
2074         //
2075         // A toplevel block contains extra information, the split is done
2076         // only to separate information that would otherwise bloat the more
2077         // lightweight Block.
2078         //
2079         // In particular, this was introduced when the support for Anonymous
2080         // Methods was implemented. 
2081         // 
2082         public class ToplevelBlock : Block {
2083                 //
2084                 // Pointer to the host of this anonymous method, or null
2085                 // if we are the topmost block
2086                 //
2087                 ToplevelBlock container;
2088                 CaptureContext capture_context;
2089                 FlowBranching top_level_branching;
2090
2091                 Hashtable capture_contexts;
2092                 ArrayList children;
2093
2094                 public bool HasVarargs {
2095                         get { return (flags & Flags.HasVarargs) != 0; }
2096                         set { flags |= Flags.HasVarargs; }
2097                 }
2098
2099                 //
2100                 // The parameters for the block.
2101                 //
2102                 public readonly Parameters Parameters;
2103                         
2104                 public void RegisterCaptureContext (CaptureContext cc)
2105                 {
2106                         if (capture_contexts == null)
2107                                 capture_contexts = new Hashtable ();
2108                         capture_contexts [cc] = cc;
2109                 }
2110
2111                 public void CompleteContexts ()
2112                 {
2113                         if (capture_contexts == null)
2114                                 return;
2115
2116                         foreach (CaptureContext cc in capture_contexts.Keys){
2117                                 cc.AdjustScopes ();
2118                         }
2119                 }
2120
2121                 public CaptureContext ToplevelBlockCaptureContext {
2122                         get { return capture_context; }
2123                 }
2124
2125                 public ToplevelBlock Container {
2126                         get { return container; }
2127                 }
2128
2129                 protected void AddChild (ToplevelBlock block)
2130                 {
2131                         if (children == null)
2132                                 children = new ArrayList ();
2133
2134                         children.Add (block);
2135                 }
2136
2137                 //
2138                 // Parent is only used by anonymous blocks to link back to their
2139                 // parents
2140                 //
2141                 public ToplevelBlock (ToplevelBlock container, Parameters parameters, Location start) :
2142                         this (container, (Flags) 0, parameters, start)
2143                 {
2144                 }
2145                 
2146                 public ToplevelBlock (Parameters parameters, Location start) :
2147                         this (null, (Flags) 0, parameters, start)
2148                 {
2149                 }
2150
2151                 public ToplevelBlock (Flags flags, Parameters parameters, Location start) :
2152                         this (null, flags, parameters, start)
2153                 {
2154                 }
2155
2156                 public ToplevelBlock (ToplevelBlock container, Flags flags, Parameters parameters, Location start) :
2157                         base (null, flags | Flags.IsToplevel, start, Location.Null)
2158                 {
2159                         Parameters = parameters == null ? Parameters.EmptyReadOnlyParameters : parameters;
2160                         this.container = container;
2161
2162                         if (container != null)
2163                                 container.AddChild (this);
2164                 }
2165
2166                 public ToplevelBlock (Location loc) : this (null, (Flags) 0, null, loc)
2167                 {
2168                 }
2169
2170                 public void SetHaveAnonymousMethods (Location loc, AnonymousContainer host)
2171                 {
2172                         if (capture_context == null)
2173                                 capture_context = new CaptureContext (this, loc, host);
2174                 }
2175
2176                 public CaptureContext CaptureContext {
2177                         get { return capture_context; }
2178                 }
2179
2180                 public FlowBranching TopLevelBranching {
2181                         get { return top_level_branching; }
2182                 }
2183
2184                 //
2185                 // This is used if anonymous methods are used inside an iterator
2186                 // (see 2test-22.cs for an example).
2187                 //
2188                 // The AnonymousMethod is created while parsing - at a time when we don't
2189                 // know yet that we're inside an iterator, so it's `Container' is initially
2190                 // null.  Later on, when resolving the iterator, we need to move the
2191                 // anonymous method into that iterator.
2192                 //
2193                 public void ReParent (ToplevelBlock new_parent, AnonymousContainer new_host)
2194                 {
2195                         foreach (ToplevelBlock block in children) {
2196                                 if (block.CaptureContext == null)
2197                                         continue;
2198
2199                                 block.container = new_parent;
2200                                 block.CaptureContext.ReParent (new_parent, new_host);
2201                         }
2202                 }
2203
2204                 //
2205                 // Returns a `ParameterReference' for the given name, or null if there
2206                 // is no such parameter
2207                 //
2208                 public ParameterReference GetParameterReference (string name, Location loc)
2209                 {
2210                         Parameter par;
2211                         int idx;
2212
2213                         for (ToplevelBlock t = this; t != null; t = t.Container) {
2214                                 Parameters pars = t.Parameters;
2215                                 par = pars.GetParameterByName (name, out idx);
2216                                 if (par != null)
2217                                         return new ParameterReference (pars, this, idx, name, loc);
2218                         }
2219                         return null;
2220                 }
2221
2222                 //
2223                 // Whether the parameter named `name' is local to this block, 
2224                 // or false, if the parameter belongs to an encompassing block.
2225                 //
2226                 public bool IsLocalParameter (string name)
2227                 {
2228                         return Parameters.GetParameterByName (name) != null;
2229                 }
2230                 
2231                 //
2232                 // Whether the `name' is a parameter reference
2233                 //
2234                 public bool IsParameterReference (string name)
2235                 {
2236                         for (ToplevelBlock t = this; t != null; t = t.Container) {
2237                                 if (t.IsLocalParameter (name))
2238                                         return true;
2239                         }
2240                         return false;
2241                 }
2242
2243                 LocalInfo this_variable = null;
2244
2245                 // <summary>
2246                 //   Returns the "this" instance variable of this block.
2247                 //   See AddThisVariable() for more information.
2248                 // </summary>
2249                 public LocalInfo ThisVariable {
2250                         get { return this_variable; }
2251                 }
2252
2253
2254                 // <summary>
2255                 //   This is used by non-static `struct' constructors which do not have an
2256                 //   initializer - in this case, the constructor must initialize all of the
2257                 //   struct's fields.  To do this, we add a "this" variable and use the flow
2258                 //   analysis code to ensure that it's been fully initialized before control
2259                 //   leaves the constructor.
2260                 // </summary>
2261                 public LocalInfo AddThisVariable (TypeContainer tc, Location l)
2262                 {
2263                         if (this_variable == null) {
2264                                 this_variable = new LocalInfo (tc, this, l);
2265                                 this_variable.Used = true;
2266                                 this_variable.IsThis = true;
2267
2268                                 Variables.Add ("this", this_variable);
2269                         }
2270
2271                         return this_variable;
2272                 }
2273
2274                 public bool IsThisAssigned (EmitContext ec)
2275                 {
2276                         return this_variable == null || this_variable.IsThisAssigned (ec, loc);
2277                 }
2278
2279                 public bool ResolveMeta (EmitContext ec, InternalParameters ip)
2280                 {
2281                         int errors = Report.Errors;
2282
2283                         if (top_level_branching != null)
2284                                 return true;
2285
2286                         ResolveMeta (this, ec, ip);
2287
2288                         top_level_branching = ec.StartFlowBranching (this);
2289
2290                         return Report.Errors == errors;
2291                 }
2292         }
2293         
2294         public class SwitchLabel {
2295                 Expression label;
2296                 object converted;
2297                 Location loc;
2298
2299                 Label il_label;
2300                 bool  il_label_set;
2301                 Label il_label_code;
2302                 bool  il_label_code_set;
2303
2304                 public static readonly object NullStringCase = new object ();
2305
2306                 //
2307                 // if expr == null, then it is the default case.
2308                 //
2309                 public SwitchLabel (Expression expr, Location l)
2310                 {
2311                         label = expr;
2312                         loc = l;
2313                 }
2314
2315                 public Expression Label {
2316                         get {
2317                                 return label;
2318                         }
2319                 }
2320
2321                 public object Converted {
2322                         get {
2323                                 return converted;
2324                         }
2325                 }
2326
2327                 public Label GetILLabel (EmitContext ec)
2328                 {
2329                         if (!il_label_set){
2330                                 il_label = ec.ig.DefineLabel ();
2331                                 il_label_set = true;
2332                         }
2333                         return il_label;
2334                 }
2335
2336                 public Label GetILLabelCode (EmitContext ec)
2337                 {
2338                         if (!il_label_code_set){
2339                                 il_label_code = ec.ig.DefineLabel ();
2340                                 il_label_code_set = true;
2341                         }
2342                         return il_label_code;
2343                 }                               
2344                 
2345                 //
2346                 // Resolves the expression, reduces it to a literal if possible
2347                 // and then converts it to the requested type.
2348                 //
2349                 public bool ResolveAndReduce (EmitContext ec, Type required_type)
2350                 {       
2351                         Expression e = label.Resolve (ec);
2352
2353                         if (e == null)
2354                                 return false;
2355
2356                         Constant c = e as Constant;
2357                         if (c == null){
2358                                 Report.Error (150, loc, "A constant value is expected");
2359                                 return false;
2360                         }
2361
2362                         if (required_type == TypeManager.string_type && e is NullLiteral) {
2363                                 converted = NullStringCase;
2364                                 return true;
2365                         }
2366
2367                         c = c.ToType (required_type, loc);
2368                         if (c == null)
2369                                 return false;
2370
2371                         converted = c.GetValue ();
2372                         return true;
2373                 }
2374
2375                 public void Erorr_AlreadyOccurs ()
2376                 {
2377                         string label;
2378                         if (converted == null)
2379                                 label = "default";
2380                         else if (converted is NullLiteral)
2381                                 label = "null";
2382                         else
2383                                 label = converted.ToString ();
2384
2385                         Report.Error (152, loc, "The label `case {0}:' already occurs in this switch statement", label);
2386                 }
2387         }
2388
2389         public class SwitchSection {
2390                 // An array of SwitchLabels.
2391                 public readonly ArrayList Labels;
2392                 public readonly Block Block;
2393                 
2394                 public SwitchSection (ArrayList labels, Block block)
2395                 {
2396                         Labels = labels;
2397                         Block = block;
2398                 }
2399         }
2400         
2401         public class Switch : Statement {
2402                 public readonly ArrayList Sections;
2403                 public Expression Expr;
2404
2405                 /// <summary>
2406                 ///   Maps constants whose type type SwitchType to their  SwitchLabels.
2407                 /// </summary>
2408                 public IDictionary Elements;
2409
2410                 /// <summary>
2411                 ///   The governing switch type
2412                 /// </summary>
2413                 public Type SwitchType;
2414
2415                 //
2416                 // Computed
2417                 //
2418                 Label default_target;
2419                 Expression new_expr;
2420                 bool is_constant;
2421                 SwitchSection constant_section;
2422                 SwitchSection default_section;
2423
2424                 //
2425                 // The types allowed to be implicitly cast from
2426                 // on the governing type
2427                 //
2428                 static Type [] allowed_types;
2429                 
2430                 public Switch (Expression e, ArrayList sects, Location l)
2431                 {
2432                         Expr = e;
2433                         Sections = sects;
2434                         loc = l;
2435                 }
2436
2437                 public bool GotDefault {
2438                         get {
2439                                 return default_section != null;
2440                         }
2441                 }
2442
2443                 public Label DefaultTarget {
2444                         get {
2445                                 return default_target;
2446                         }
2447                 }
2448
2449                 //
2450                 // Determines the governing type for a switch.  The returned
2451                 // expression might be the expression from the switch, or an
2452                 // expression that includes any potential conversions to the
2453                 // integral types or to string.
2454                 //
2455                 Expression SwitchGoverningType (EmitContext ec, Type t)
2456                 {
2457                         if (t == TypeManager.byte_type ||
2458                             t == TypeManager.sbyte_type ||
2459                             t == TypeManager.ushort_type ||
2460                             t == TypeManager.short_type ||
2461                             t == TypeManager.uint32_type ||
2462                             t == TypeManager.int32_type ||
2463                             t == TypeManager.uint64_type ||
2464                             t == TypeManager.int64_type ||
2465                             t == TypeManager.char_type ||
2466                             t == TypeManager.string_type ||
2467                             t == TypeManager.bool_type ||
2468                             t.IsSubclassOf (TypeManager.enum_type))
2469                                 return Expr;
2470
2471                         if (allowed_types == null){
2472                                 allowed_types = new Type [] {
2473                                         TypeManager.sbyte_type,
2474                                         TypeManager.byte_type,
2475                                         TypeManager.short_type,
2476                                         TypeManager.ushort_type,
2477                                         TypeManager.int32_type,
2478                                         TypeManager.uint32_type,
2479                                         TypeManager.int64_type,
2480                                         TypeManager.uint64_type,
2481                                         TypeManager.char_type,
2482                                         TypeManager.string_type,
2483                                         TypeManager.bool_type
2484                                 };
2485                         }
2486
2487                         //
2488                         // Try to find a *user* defined implicit conversion.
2489                         //
2490                         // If there is no implicit conversion, or if there are multiple
2491                         // conversions, we have to report an error
2492                         //
2493                         Expression converted = null;
2494                         foreach (Type tt in allowed_types){
2495                                 Expression e;
2496                                 
2497                                 e = Convert.ImplicitUserConversion (ec, Expr, tt, loc);
2498                                 if (e == null)
2499                                         continue;
2500
2501                                 //
2502                                 // Ignore over-worked ImplicitUserConversions that do
2503                                 // an implicit conversion in addition to the user conversion.
2504                                 // 
2505                                 if (!(e is UserCast))
2506                                         continue;
2507
2508                                 if (converted != null){
2509                                         Report.ExtraInformation (
2510                                                 loc,
2511                                                 String.Format ("reason: more than one conversion to an integral type exist for type {0}",
2512                                                                TypeManager.CSharpName (Expr.Type)));
2513                                         return null;
2514                                 }
2515
2516                                 converted = e;
2517                         }
2518                         return converted;
2519                 }
2520
2521                 //
2522                 // Performs the basic sanity checks on the switch statement
2523                 // (looks for duplicate keys and non-constant expressions).
2524                 //
2525                 // It also returns a hashtable with the keys that we will later
2526                 // use to compute the switch tables
2527                 //
2528                 bool CheckSwitch (EmitContext ec)
2529                 {
2530                         bool error = false;
2531                         Elements = Sections.Count > 10 ? 
2532                                 (IDictionary)new Hashtable () : 
2533                                 (IDictionary)new ListDictionary ();
2534                                 
2535                         foreach (SwitchSection ss in Sections){
2536                                 foreach (SwitchLabel sl in ss.Labels){
2537                                         if (sl.Label == null){
2538                                                 if (default_section != null){
2539                                                         sl.Erorr_AlreadyOccurs ();
2540                                                         error = true;
2541                                                 }
2542                                                 default_section = ss;
2543                                                 continue;
2544                                         }
2545
2546                                         if (!sl.ResolveAndReduce (ec, SwitchType)){
2547                                                 error = true;
2548                                                 continue;
2549                                         }
2550                                         
2551                                         object key = sl.Converted;
2552                                         try {
2553                                                 Elements.Add (key, sl);
2554                                         }
2555                                         catch (ArgumentException) {
2556                                                  sl.Erorr_AlreadyOccurs ();
2557                                                  error = true;
2558                                          }
2559                                 }
2560                         }
2561                         return !error;
2562                 }
2563
2564                 void EmitObjectInteger (ILGenerator ig, object k)
2565                 {
2566                         if (k is int)
2567                                 IntConstant.EmitInt (ig, (int) k);
2568                         else if (k is Constant) {
2569                                 EmitObjectInteger (ig, ((Constant) k).GetValue ());
2570                         } 
2571                         else if (k is uint)
2572                                 IntConstant.EmitInt (ig, unchecked ((int) (uint) k));
2573                         else if (k is long)
2574                         {
2575                                 if ((long) k >= int.MinValue && (long) k <= int.MaxValue)
2576                                 {
2577                                         IntConstant.EmitInt (ig, (int) (long) k);
2578                                         ig.Emit (OpCodes.Conv_I8);
2579                                 }
2580                                 else
2581                                         LongConstant.EmitLong (ig, (long) k);
2582                         }
2583                         else if (k is ulong)
2584                         {
2585                                 if ((ulong) k < (1L<<32))
2586                                 {
2587                                         IntConstant.EmitInt (ig, (int) (long) k);
2588                                         ig.Emit (OpCodes.Conv_U8);
2589                                 }
2590                                 else
2591                                 {
2592                                         LongConstant.EmitLong (ig, unchecked ((long) (ulong) k));
2593                                 }
2594                         }
2595                         else if (k is char)
2596                                 IntConstant.EmitInt (ig, (int) ((char) k));
2597                         else if (k is sbyte)
2598                                 IntConstant.EmitInt (ig, (int) ((sbyte) k));
2599                         else if (k is byte)
2600                                 IntConstant.EmitInt (ig, (int) ((byte) k));
2601                         else if (k is short)
2602                                 IntConstant.EmitInt (ig, (int) ((short) k));
2603                         else if (k is ushort)
2604                                 IntConstant.EmitInt (ig, (int) ((ushort) k));
2605                         else if (k is bool)
2606                                 IntConstant.EmitInt (ig, ((bool) k) ? 1 : 0);
2607                         else
2608                                 throw new Exception ("Unhandled case");
2609                 }
2610                 
2611                 // structure used to hold blocks of keys while calculating table switch
2612                 class KeyBlock : IComparable
2613                 {
2614                         public KeyBlock (long _nFirst)
2615                         {
2616                                 nFirst = nLast = _nFirst;
2617                         }
2618                         public long nFirst;
2619                         public long nLast;
2620                         public ArrayList rgKeys = null;
2621                         // how many items are in the bucket
2622                         public int Size = 1;
2623                         public int Length
2624                         {
2625                                 get { return (int) (nLast - nFirst + 1); }
2626                         }
2627                         public static long TotalLength (KeyBlock kbFirst, KeyBlock kbLast)
2628                         {
2629                                 return kbLast.nLast - kbFirst.nFirst + 1;
2630                         }
2631                         public int CompareTo (object obj)
2632                         {
2633                                 KeyBlock kb = (KeyBlock) obj;
2634                                 int nLength = Length;
2635                                 int nLengthOther = kb.Length;
2636                                 if (nLengthOther == nLength)
2637                                         return (int) (kb.nFirst - nFirst);
2638                                 return nLength - nLengthOther;
2639                         }
2640                 }
2641
2642                 /// <summary>
2643                 /// This method emits code for a lookup-based switch statement (non-string)
2644                 /// Basically it groups the cases into blocks that are at least half full,
2645                 /// and then spits out individual lookup opcodes for each block.
2646                 /// It emits the longest blocks first, and short blocks are just
2647                 /// handled with direct compares.
2648                 /// </summary>
2649                 /// <param name="ec"></param>
2650                 /// <param name="val"></param>
2651                 /// <returns></returns>
2652                 void TableSwitchEmit (EmitContext ec, LocalBuilder val)
2653                 {
2654                         int cElements = Elements.Count;
2655                         object [] rgKeys = new object [cElements];
2656                         Elements.Keys.CopyTo (rgKeys, 0);
2657                         Array.Sort (rgKeys);
2658
2659                         // initialize the block list with one element per key
2660                         ArrayList rgKeyBlocks = new ArrayList ();
2661                         foreach (object key in rgKeys)
2662                                 rgKeyBlocks.Add (new KeyBlock (System.Convert.ToInt64 (key)));
2663
2664                         KeyBlock kbCurr;
2665                         // iteratively merge the blocks while they are at least half full
2666                         // there's probably a really cool way to do this with a tree...
2667                         while (rgKeyBlocks.Count > 1)
2668                         {
2669                                 ArrayList rgKeyBlocksNew = new ArrayList ();
2670                                 kbCurr = (KeyBlock) rgKeyBlocks [0];
2671                                 for (int ikb = 1; ikb < rgKeyBlocks.Count; ikb++)
2672                                 {
2673                                         KeyBlock kb = (KeyBlock) rgKeyBlocks [ikb];
2674                                         if ((kbCurr.Size + kb.Size) * 2 >=  KeyBlock.TotalLength (kbCurr, kb))
2675                                         {
2676                                                 // merge blocks
2677                                                 kbCurr.nLast = kb.nLast;
2678                                                 kbCurr.Size += kb.Size;
2679                                         }
2680                                         else
2681                                         {
2682                                                 // start a new block
2683                                                 rgKeyBlocksNew.Add (kbCurr);
2684                                                 kbCurr = kb;
2685                                         }
2686                                 }
2687                                 rgKeyBlocksNew.Add (kbCurr);
2688                                 if (rgKeyBlocks.Count == rgKeyBlocksNew.Count)
2689                                         break;
2690                                 rgKeyBlocks = rgKeyBlocksNew;
2691                         }
2692
2693                         // initialize the key lists
2694                         foreach (KeyBlock kb in rgKeyBlocks)
2695                                 kb.rgKeys = new ArrayList ();
2696
2697                         // fill the key lists
2698                         int iBlockCurr = 0;
2699                         if (rgKeyBlocks.Count > 0) {
2700                                 kbCurr = (KeyBlock) rgKeyBlocks [0];
2701                                 foreach (object key in rgKeys)
2702                                 {
2703                                         bool fNextBlock = (key is UInt64) ? (ulong) key > (ulong) kbCurr.nLast :
2704                                                 System.Convert.ToInt64 (key) > kbCurr.nLast;
2705                                         if (fNextBlock)
2706                                                 kbCurr = (KeyBlock) rgKeyBlocks [++iBlockCurr];
2707                                         kbCurr.rgKeys.Add (key);
2708                                 }
2709                         }
2710
2711                         // sort the blocks so we can tackle the largest ones first
2712                         rgKeyBlocks.Sort ();
2713
2714                         // okay now we can start...
2715                         ILGenerator ig = ec.ig;
2716                         Label lblEnd = ig.DefineLabel ();       // at the end ;-)
2717                         Label lblDefault = ig.DefineLabel ();
2718
2719                         Type typeKeys = null;
2720                         if (rgKeys.Length > 0)
2721                                 typeKeys = rgKeys [0].GetType ();       // used for conversions
2722
2723                         Type compare_type;
2724                         
2725                         if (TypeManager.IsEnumType (SwitchType))
2726                                 compare_type = TypeManager.EnumToUnderlying (SwitchType);
2727                         else
2728                                 compare_type = SwitchType;
2729                         
2730                         for (int iBlock = rgKeyBlocks.Count - 1; iBlock >= 0; --iBlock)
2731                         {
2732                                 KeyBlock kb = ((KeyBlock) rgKeyBlocks [iBlock]);
2733                                 lblDefault = (iBlock == 0) ? DefaultTarget : ig.DefineLabel ();
2734                                 if (kb.Length <= 2)
2735                                 {
2736                                         foreach (object key in kb.rgKeys)
2737                                         {
2738                                                 ig.Emit (OpCodes.Ldloc, val);
2739                                                 EmitObjectInteger (ig, key);
2740                                                 SwitchLabel sl = (SwitchLabel) Elements [key];
2741                                                 ig.Emit (OpCodes.Beq, sl.GetILLabel (ec));
2742                                         }
2743                                 }
2744                                 else
2745                                 {
2746                                         // TODO: if all the keys in the block are the same and there are
2747                                         //       no gaps/defaults then just use a range-check.
2748                                         if (compare_type == TypeManager.int64_type ||
2749                                                 compare_type == TypeManager.uint64_type)
2750                                         {
2751                                                 // TODO: optimize constant/I4 cases
2752
2753                                                 // check block range (could be > 2^31)
2754                                                 ig.Emit (OpCodes.Ldloc, val);
2755                                                 EmitObjectInteger (ig, System.Convert.ChangeType (kb.nFirst, typeKeys));
2756                                                 ig.Emit (OpCodes.Blt, lblDefault);
2757                                                 ig.Emit (OpCodes.Ldloc, val);
2758                                                 EmitObjectInteger (ig, System.Convert.ChangeType (kb.nLast, typeKeys));
2759                                                 ig.Emit (OpCodes.Bgt, lblDefault);
2760
2761                                                 // normalize range
2762                                                 ig.Emit (OpCodes.Ldloc, val);
2763                                                 if (kb.nFirst != 0)
2764                                                 {
2765                                                         EmitObjectInteger (ig, System.Convert.ChangeType (kb.nFirst, typeKeys));
2766                                                         ig.Emit (OpCodes.Sub);
2767                                                 }
2768                                                 ig.Emit (OpCodes.Conv_I4);      // assumes < 2^31 labels!
2769                                         }
2770                                         else
2771                                         {
2772                                                 // normalize range
2773                                                 ig.Emit (OpCodes.Ldloc, val);
2774                                                 int nFirst = (int) kb.nFirst;
2775                                                 if (nFirst > 0)
2776                                                 {
2777                                                         IntConstant.EmitInt (ig, nFirst);
2778                                                         ig.Emit (OpCodes.Sub);
2779                                                 }
2780                                                 else if (nFirst < 0)
2781                                                 {
2782                                                         IntConstant.EmitInt (ig, -nFirst);
2783                                                         ig.Emit (OpCodes.Add);
2784                                                 }
2785                                         }
2786
2787                                         // first, build the list of labels for the switch
2788                                         int iKey = 0;
2789                                         int cJumps = kb.Length;
2790                                         Label [] rgLabels = new Label [cJumps];
2791                                         for (int iJump = 0; iJump < cJumps; iJump++)
2792                                         {
2793                                                 object key = kb.rgKeys [iKey];
2794                                                 if (System.Convert.ToInt64 (key) == kb.nFirst + iJump)
2795                                                 {
2796                                                         SwitchLabel sl = (SwitchLabel) Elements [key];
2797                                                         rgLabels [iJump] = sl.GetILLabel (ec);
2798                                                         iKey++;
2799                                                 }
2800                                                 else
2801                                                         rgLabels [iJump] = lblDefault;
2802                                         }
2803                                         // emit the switch opcode
2804                                         ig.Emit (OpCodes.Switch, rgLabels);
2805                                 }
2806
2807                                 // mark the default for this block
2808                                 if (iBlock != 0)
2809                                         ig.MarkLabel (lblDefault);
2810                         }
2811
2812                         // TODO: find the default case and emit it here,
2813                         //       to prevent having to do the following jump.
2814                         //       make sure to mark other labels in the default section
2815
2816                         // the last default just goes to the end
2817                         ig.Emit (OpCodes.Br, lblDefault);
2818
2819                         // now emit the code for the sections
2820                         bool fFoundDefault = false;
2821                         foreach (SwitchSection ss in Sections)
2822                         {
2823                                 foreach (SwitchLabel sl in ss.Labels)
2824                                 {
2825                                         ig.MarkLabel (sl.GetILLabel (ec));
2826                                         ig.MarkLabel (sl.GetILLabelCode (ec));
2827                                         if (sl.Label == null)
2828                                         {
2829                                                 ig.MarkLabel (lblDefault);
2830                                                 fFoundDefault = true;
2831                                         }
2832                                 }
2833                                 ss.Block.Emit (ec);
2834                                 //ig.Emit (OpCodes.Br, lblEnd);
2835                         }
2836                         
2837                         if (!fFoundDefault) {
2838                                 ig.MarkLabel (lblDefault);
2839                         }
2840                         ig.MarkLabel (lblEnd);
2841                 }
2842                 //
2843                 // This simple emit switch works, but does not take advantage of the
2844                 // `switch' opcode. 
2845                 // TODO: remove non-string logic from here
2846                 // TODO: binary search strings?
2847                 //
2848                 void SimpleSwitchEmit (EmitContext ec, LocalBuilder val)
2849                 {
2850                         ILGenerator ig = ec.ig;
2851                         Label end_of_switch = ig.DefineLabel ();
2852                         Label next_test = ig.DefineLabel ();
2853                         Label null_target = ig.DefineLabel ();
2854                         bool first_test = true;
2855                         bool pending_goto_end = false;
2856                         bool null_marked = false;
2857                         bool null_found;
2858
2859                         ig.Emit (OpCodes.Ldloc, val);
2860                         
2861                         if (Elements.Contains (SwitchLabel.NullStringCase)){
2862                                 ig.Emit (OpCodes.Brfalse, null_target);
2863                         } else
2864                                 ig.Emit (OpCodes.Brfalse, default_target);
2865                         
2866                         ig.Emit (OpCodes.Ldloc, val);
2867                         ig.Emit (OpCodes.Call, TypeManager.string_isinterneted_string);
2868                         ig.Emit (OpCodes.Stloc, val);
2869
2870                         int section_count = Sections.Count;
2871                         for (int section = 0; section < section_count; section++){
2872                                 SwitchSection ss = (SwitchSection) Sections [section];
2873
2874                                 if (ss == default_section)
2875                                         continue;
2876
2877                                 Label sec_begin = ig.DefineLabel ();
2878
2879                                 ig.Emit (OpCodes.Nop);
2880
2881                                 if (pending_goto_end)
2882                                         ig.Emit (OpCodes.Br, end_of_switch);
2883
2884                                 int label_count = ss.Labels.Count;
2885                                 null_found = false;
2886                                 for (int label = 0; label < label_count; label++){
2887                                         SwitchLabel sl = (SwitchLabel) ss.Labels [label];
2888                                         ig.MarkLabel (sl.GetILLabel (ec));
2889                                         
2890                                         if (!first_test){
2891                                                 ig.MarkLabel (next_test);
2892                                                 next_test = ig.DefineLabel ();
2893                                         }
2894                                         //
2895                                         // If we are the default target
2896                                         //
2897                                         if (sl.Label != null){
2898                                                 object lit = sl.Converted;
2899
2900                                                 if (lit == SwitchLabel.NullStringCase){
2901                                                         null_found = true;
2902                                                         if (label_count == 1)
2903                                                                 ig.Emit (OpCodes.Br, next_test);
2904                                                         continue;
2905                                                 }
2906                                                 
2907                                                 ig.Emit (OpCodes.Ldloc, val);
2908                                                 ig.Emit (OpCodes.Ldstr, (string)lit);
2909                                                 if (label_count == 1)
2910                                                         ig.Emit (OpCodes.Bne_Un, next_test);
2911                                                 else {
2912                                                         if (label+1 == label_count)
2913                                                                 ig.Emit (OpCodes.Bne_Un, next_test);
2914                                                         else
2915                                                                 ig.Emit (OpCodes.Beq, sec_begin);
2916                                                 }
2917                                         }
2918                                 }
2919                                 if (null_found) {
2920                                         ig.MarkLabel (null_target);
2921                                         null_marked = true;
2922                                 }
2923                                 ig.MarkLabel (sec_begin);
2924                                 foreach (SwitchLabel sl in ss.Labels)
2925                                         ig.MarkLabel (sl.GetILLabelCode (ec));
2926
2927                                 ss.Block.Emit (ec);
2928                                 pending_goto_end = !ss.Block.HasRet;
2929                                 first_test = false;
2930                         }
2931                         ig.MarkLabel (next_test);
2932                         ig.MarkLabel (default_target);
2933                         if (!null_marked)
2934                                 ig.MarkLabel (null_target);
2935                         if (default_section != null)
2936                                 default_section.Block.Emit (ec);
2937                         ig.MarkLabel (end_of_switch);
2938                 }
2939
2940                 SwitchSection FindSection (SwitchLabel label)
2941                 {
2942                         foreach (SwitchSection ss in Sections){
2943                                 foreach (SwitchLabel sl in ss.Labels){
2944                                         if (label == sl)
2945                                                 return ss;
2946                                 }
2947                         }
2948
2949                         return null;
2950                 }
2951
2952                 public override bool Resolve (EmitContext ec)
2953                 {
2954                         Expr = Expr.Resolve (ec);
2955                         if (Expr == null)
2956                                 return false;
2957
2958                         new_expr = SwitchGoverningType (ec, Expr.Type);
2959                         if (new_expr == null){
2960                                 Report.Error (151, loc, "A value of an integral type or string expected for switch");
2961                                 return false;
2962                         }
2963
2964                         // Validate switch.
2965                         SwitchType = new_expr.Type;
2966
2967                         if (!CheckSwitch (ec))
2968                                 return false;
2969
2970                         Switch old_switch = ec.Switch;
2971                         ec.Switch = this;
2972                         ec.Switch.SwitchType = SwitchType;
2973
2974                         Report.Debug (1, "START OF SWITCH BLOCK", loc, ec.CurrentBranching);
2975                         ec.StartFlowBranching (FlowBranching.BranchingType.Switch, loc);
2976
2977                         is_constant = new_expr is Constant;
2978                         if (is_constant) {
2979                                 object key = ((Constant) new_expr).GetValue ();
2980                                 SwitchLabel label = (SwitchLabel) Elements [key];
2981
2982                                 constant_section = FindSection (label);
2983                                 if (constant_section == null)
2984                                         constant_section = default_section;
2985                         }
2986
2987                         bool first = true;
2988                         foreach (SwitchSection ss in Sections){
2989                                 if (!first)
2990                                         ec.CurrentBranching.CreateSibling (
2991                                                 null, FlowBranching.SiblingType.SwitchSection);
2992                                 else
2993                                         first = false;
2994
2995                                 if (is_constant && (ss != constant_section)) {
2996                                         // If we're a constant switch, we're only emitting
2997                                         // one single section - mark all the others as
2998                                         // unreachable.
2999                                         ec.CurrentBranching.CurrentUsageVector.Goto ();
3000                                         if (!ss.Block.ResolveUnreachable (ec, true))
3001                                                 return false;
3002                                 } else {
3003                                         if (!ss.Block.Resolve (ec))
3004                                                 return false;
3005                                 }
3006                         }
3007
3008                         if (default_section == null)
3009                                 ec.CurrentBranching.CreateSibling (
3010                                         null, FlowBranching.SiblingType.SwitchSection);
3011
3012                         FlowBranching.Reachability reachability = ec.EndFlowBranching ();
3013                         ec.Switch = old_switch;
3014
3015                         Report.Debug (1, "END OF SWITCH BLOCK", loc, ec.CurrentBranching,
3016                                       reachability);
3017
3018                         return true;
3019                 }
3020                 
3021                 protected override void DoEmit (EmitContext ec)
3022                 {
3023                         ILGenerator ig = ec.ig;
3024
3025                         // Store variable for comparission purposes
3026                         LocalBuilder value;
3027                         if (!is_constant) {
3028                                 value = ig.DeclareLocal (SwitchType);
3029                                 new_expr.Emit (ec);
3030                                 ig.Emit (OpCodes.Stloc, value);
3031                         } else
3032                                 value = null;
3033
3034                         default_target = ig.DefineLabel ();
3035
3036                         //
3037                         // Setup the codegen context
3038                         //
3039                         Label old_end = ec.LoopEnd;
3040                         Switch old_switch = ec.Switch;
3041                         
3042                         ec.LoopEnd = ig.DefineLabel ();
3043                         ec.Switch = this;
3044
3045                         // Emit Code.
3046                         if (is_constant) {
3047                                 if (constant_section != null)
3048                                         constant_section.Block.Emit (ec);
3049                         } else if (SwitchType == TypeManager.string_type)
3050                                 SimpleSwitchEmit (ec, value);
3051                         else
3052                                 TableSwitchEmit (ec, value);
3053
3054                         // Restore context state. 
3055                         ig.MarkLabel (ec.LoopEnd);
3056
3057                         //
3058                         // Restore the previous context
3059                         //
3060                         ec.LoopEnd = old_end;
3061                         ec.Switch = old_switch;
3062                 }
3063         }
3064
3065         public abstract class ExceptionStatement : Statement
3066         {
3067                 public abstract void EmitFinally (EmitContext ec);
3068
3069                 protected bool emit_finally = true;
3070                 ArrayList parent_vectors;
3071
3072                 protected void DoEmitFinally (EmitContext ec)
3073                 {
3074                         if (emit_finally)
3075                                 ec.ig.BeginFinallyBlock ();
3076                         else if (ec.InIterator)
3077                                 ec.CurrentIterator.MarkFinally (ec, parent_vectors);
3078                         EmitFinally (ec);
3079                 }
3080
3081                 protected void ResolveFinally (FlowBranchingException branching)
3082                 {
3083                         emit_finally = branching.EmitFinally;
3084                         if (!emit_finally)
3085                                 branching.Parent.StealFinallyClauses (ref parent_vectors);
3086                 }
3087         }
3088
3089         public class Lock : ExceptionStatement {
3090                 Expression expr;
3091                 public Statement Statement;
3092                 TemporaryVariable temp;
3093                         
3094                 public Lock (Expression expr, Statement stmt, Location l)
3095                 {
3096                         this.expr = expr;
3097                         Statement = stmt;
3098                         loc = l;
3099                 }
3100
3101                 public override bool Resolve (EmitContext ec)
3102                 {
3103                         expr = expr.Resolve (ec);
3104                         if (expr == null)
3105                                 return false;
3106
3107                         if (expr.Type.IsValueType){
3108                                 Report.Error (185, loc,
3109                                               "`{0}' is not a reference type as required by the lock statement",
3110                                               TypeManager.CSharpName (expr.Type));
3111                                 return false;
3112                         }
3113
3114                         FlowBranchingException branching = ec.StartFlowBranching (this);
3115                         bool ok = Statement.Resolve (ec);
3116                         if (!ok) {
3117                                 ec.KillFlowBranching ();
3118                                 return false;
3119                         }
3120
3121                         ResolveFinally (branching);
3122
3123                         FlowBranching.Reachability reachability = ec.EndFlowBranching ();
3124                         if (reachability.Returns != FlowBranching.FlowReturns.Always) {
3125                                 // Unfortunately, System.Reflection.Emit automatically emits
3126                                 // a leave to the end of the finally block.
3127                                 // This is a problem if `returns' is true since we may jump
3128                                 // to a point after the end of the method.
3129                                 // As a workaround, emit an explicit ret here.
3130                                 ec.NeedReturnLabel ();
3131                         }
3132
3133                         temp = new TemporaryVariable (expr.Type, loc);
3134                         temp.Resolve (ec);
3135                         
3136                         return true;
3137                 }
3138                 
3139                 protected override void DoEmit (EmitContext ec)
3140                 {
3141                         ILGenerator ig = ec.ig;
3142
3143                         temp.Store (ec, expr);
3144                         temp.Emit (ec);
3145                         ig.Emit (OpCodes.Call, TypeManager.void_monitor_enter_object);
3146
3147                         // try
3148                         if (emit_finally)
3149                                 ig.BeginExceptionBlock ();
3150                         Statement.Emit (ec);
3151                         
3152                         // finally
3153                         DoEmitFinally (ec);
3154                         if (emit_finally)
3155                                 ig.EndExceptionBlock ();
3156                 }
3157
3158                 public override void EmitFinally (EmitContext ec)
3159                 {
3160                         temp.Emit (ec);
3161                         ec.ig.Emit (OpCodes.Call, TypeManager.void_monitor_exit_object);
3162                 }
3163         }
3164
3165         public class Unchecked : Statement {
3166                 public readonly Block Block;
3167                 
3168                 public Unchecked (Block b)
3169                 {
3170                         Block = b;
3171                         b.Unchecked = true;
3172                 }
3173
3174                 public override bool Resolve (EmitContext ec)
3175                 {
3176                         bool previous_state = ec.CheckState;
3177                         bool previous_state_const = ec.ConstantCheckState;
3178
3179                         ec.CheckState = false;
3180                         ec.ConstantCheckState = false;
3181                         bool ret = Block.Resolve (ec);
3182                         ec.CheckState = previous_state;
3183                         ec.ConstantCheckState = previous_state_const;
3184
3185                         return ret;
3186                 }
3187                 
3188                 protected override void DoEmit (EmitContext ec)
3189                 {
3190                         bool previous_state = ec.CheckState;
3191                         bool previous_state_const = ec.ConstantCheckState;
3192                         
3193                         ec.CheckState = false;
3194                         ec.ConstantCheckState = false;
3195                         Block.Emit (ec);
3196                         ec.CheckState = previous_state;
3197                         ec.ConstantCheckState = previous_state_const;
3198                 }
3199         }
3200
3201         public class Checked : Statement {
3202                 public readonly Block Block;
3203                 
3204                 public Checked (Block b)
3205                 {
3206                         Block = b;
3207                         b.Unchecked = false;
3208                 }
3209
3210                 public override bool Resolve (EmitContext ec)
3211                 {
3212                         bool previous_state = ec.CheckState;
3213                         bool previous_state_const = ec.ConstantCheckState;
3214                         
3215                         ec.CheckState = true;
3216                         ec.ConstantCheckState = true;
3217                         bool ret = Block.Resolve (ec);
3218                         ec.CheckState = previous_state;
3219                         ec.ConstantCheckState = previous_state_const;
3220
3221                         return ret;
3222                 }
3223
3224                 protected override void DoEmit (EmitContext ec)
3225                 {
3226                         bool previous_state = ec.CheckState;
3227                         bool previous_state_const = ec.ConstantCheckState;
3228                         
3229                         ec.CheckState = true;
3230                         ec.ConstantCheckState = true;
3231                         Block.Emit (ec);
3232                         ec.CheckState = previous_state;
3233                         ec.ConstantCheckState = previous_state_const;
3234                 }
3235         }
3236
3237         public class Unsafe : Statement {
3238                 public readonly Block Block;
3239
3240                 public Unsafe (Block b)
3241                 {
3242                         Block = b;
3243                         Block.Unsafe = true;
3244                 }
3245
3246                 public override bool Resolve (EmitContext ec)
3247                 {
3248                         bool previous_state = ec.InUnsafe;
3249                         bool val;
3250                         
3251                         ec.InUnsafe = true;
3252                         val = Block.Resolve (ec);
3253                         ec.InUnsafe = previous_state;
3254
3255                         return val;
3256                 }
3257                 
3258                 protected override void DoEmit (EmitContext ec)
3259                 {
3260                         bool previous_state = ec.InUnsafe;
3261                         
3262                         ec.InUnsafe = true;
3263                         Block.Emit (ec);
3264                         ec.InUnsafe = previous_state;
3265                 }
3266         }
3267
3268         // 
3269         // Fixed statement
3270         //
3271         public class Fixed : Statement {
3272                 Expression type;
3273                 ArrayList declarators;
3274                 Statement statement;
3275                 Type expr_type;
3276                 Emitter[] data;
3277                 bool has_ret;
3278
3279                 abstract class Emitter
3280                 {
3281                         protected LocalInfo vi;
3282                         protected Expression converted;
3283
3284                         protected Emitter (Expression expr, LocalInfo li)
3285                         {
3286                                 converted = expr;
3287                                 vi = li;
3288                         }
3289
3290                         public abstract void Emit (EmitContext ec);
3291                         public abstract void EmitExit (ILGenerator ig);
3292                 }
3293
3294                 class ExpressionEmitter : Emitter {
3295                         public ExpressionEmitter (Expression converted, LocalInfo li) :
3296                                 base (converted, li)
3297                         {
3298                         }
3299
3300                         public override void Emit (EmitContext ec) {
3301                                 //
3302                                 // Store pointer in pinned location
3303                                 //
3304                                 converted.Emit (ec);
3305                                 ec.ig.Emit (OpCodes.Stloc, vi.LocalBuilder);
3306                         }
3307
3308                         public override void EmitExit (ILGenerator ig)
3309                         {
3310                                 ig.Emit (OpCodes.Ldc_I4_0);
3311                                 ig.Emit (OpCodes.Conv_U);
3312                                 ig.Emit (OpCodes.Stloc, vi.LocalBuilder);
3313                         }
3314                 }
3315
3316                 class StringEmitter : Emitter {
3317                         LocalBuilder pinned_string;
3318                         Location loc;
3319
3320                         public StringEmitter (Expression expr, LocalInfo li, Location loc):
3321                                 base (expr, li)
3322                         {
3323                                 this.loc = loc;
3324                         }
3325
3326                         public override void Emit (EmitContext ec)
3327                         {
3328                                 ILGenerator ig = ec.ig;
3329                                 pinned_string = TypeManager.DeclareLocalPinned (ig, TypeManager.string_type);
3330                                         
3331                                 converted.Emit (ec);
3332                                 ig.Emit (OpCodes.Stloc, pinned_string);
3333
3334                                 Expression sptr = new StringPtr (pinned_string, loc);
3335                                 converted = Convert.ImplicitConversionRequired (
3336                                         ec, sptr, vi.VariableType, loc);
3337                                         
3338                                 if (converted == null)
3339                                         return;
3340
3341                                 converted.Emit (ec);
3342                                 ig.Emit (OpCodes.Stloc, vi.LocalBuilder);
3343                         }
3344
3345                         public override void EmitExit(ILGenerator ig)
3346                         {
3347                                 ig.Emit (OpCodes.Ldnull);
3348                                 ig.Emit (OpCodes.Stloc, pinned_string);
3349                         }
3350                 }
3351
3352                 public Fixed (Expression type, ArrayList decls, Statement stmt, Location l)
3353                 {
3354                         this.type = type;
3355                         declarators = decls;
3356                         statement = stmt;
3357                         loc = l;
3358                 }
3359
3360                 public Statement Statement {
3361                         get { return statement; }
3362                 }
3363
3364                 public override bool Resolve (EmitContext ec)
3365                 {
3366                         if (!ec.InUnsafe){
3367                                 Expression.UnsafeError (loc);
3368                                 return false;
3369                         }
3370                         
3371                         TypeExpr texpr = type.ResolveAsTypeTerminal (ec, false);
3372                         if (texpr == null)
3373                                 return false;
3374
3375                         expr_type = texpr.ResolveType (ec);
3376
3377                         data = new Emitter [declarators.Count];
3378
3379                         if (!expr_type.IsPointer){
3380                                 Report.Error (209, loc, "The type of locals declared in a fixed statement must be a pointer type");
3381                                 return false;
3382                         }
3383                         
3384                         int i = 0;
3385                         foreach (Pair p in declarators){
3386                                 LocalInfo vi = (LocalInfo) p.First;
3387                                 Expression e = (Expression) p.Second;
3388
3389                                 vi.VariableInfo.SetAssigned (ec);
3390                                 vi.SetReadOnlyContext (LocalInfo.ReadOnlyContext.Fixed);
3391
3392                                 //
3393                                 // The rules for the possible declarators are pretty wise,
3394                                 // but the production on the grammar is more concise.
3395                                 //
3396                                 // So we have to enforce these rules here.
3397                                 //
3398                                 // We do not resolve before doing the case 1 test,
3399                                 // because the grammar is explicit in that the token &
3400                                 // is present, so we need to test for this particular case.
3401                                 //
3402
3403                                 if (e is Cast){
3404                                         Report.Error (254, loc, "The right hand side of a fixed statement assignment may not be a cast expression");
3405                                         return false;
3406                                 }
3407                                 
3408                                 //
3409                                 // Case 1: & object.
3410                                 //
3411                                 if (e is Unary && ((Unary) e).Oper == Unary.Operator.AddressOf){
3412                                         Expression child = ((Unary) e).Expr;
3413
3414                                         if (child is ParameterReference || child is LocalVariableReference){
3415                                                 Report.Error (
3416                                                         213, loc, 
3417                                                         "No need to use fixed statement for parameters or " +
3418                                                         "local variable declarations (address is already " +
3419                                                         "fixed)");
3420                                                 return false;
3421                                         }
3422
3423                                         ec.InFixedInitializer = true;
3424                                         e = e.Resolve (ec);
3425                                         ec.InFixedInitializer = false;
3426                                         if (e == null)
3427                                                 return false;
3428
3429                                         child = ((Unary) e).Expr;
3430                                         
3431                                         if (!TypeManager.VerifyUnManaged (child.Type, loc))
3432                                                 return false;
3433
3434                                         if (!Convert.ImplicitConversionExists (ec, e, expr_type)) {
3435                                                 e.Error_ValueCannotBeConverted (e.Location, expr_type, false);
3436                                                 return false;
3437                                         }
3438
3439                                         data [i] = new ExpressionEmitter (e, vi);
3440                                         i++;
3441
3442                                         continue;
3443                                 }
3444
3445                                 ec.InFixedInitializer = true;
3446                                 e = e.Resolve (ec);
3447                                 ec.InFixedInitializer = false;
3448                                 if (e == null)
3449                                         return false;
3450
3451                                 //
3452                                 // Case 2: Array
3453                                 //
3454                                 if (e.Type.IsArray){
3455                                         Type array_type = TypeManager.GetElementType (e.Type);
3456                                         
3457                                         //
3458                                         // Provided that array_type is unmanaged,
3459                                         //
3460                                         if (!TypeManager.VerifyUnManaged (array_type, loc))
3461                                                 return false;
3462
3463                                         //
3464                                         // and T* is implicitly convertible to the
3465                                         // pointer type given in the fixed statement.
3466                                         //
3467                                         ArrayPtr array_ptr = new ArrayPtr (e, array_type, loc);
3468                                         
3469                                         Expression converted = Convert.ImplicitConversionRequired (
3470                                                 ec, array_ptr, vi.VariableType, loc);
3471                                         if (converted == null)
3472                                                 return false;
3473
3474                                         data [i] = new ExpressionEmitter (converted, vi);
3475                                         i++;
3476
3477                                         continue;
3478                                 }
3479
3480                                 //
3481                                 // Case 3: string
3482                                 //
3483                                 if (e.Type == TypeManager.string_type){
3484                                         data [i] = new StringEmitter (e, vi, loc);
3485                                         i++;
3486                                         continue;
3487                                 }
3488
3489                                 // Case 4: fixed buffer
3490                                 FieldExpr fe = e as FieldExpr;
3491                                 if (fe != null) {
3492                                         IFixedBuffer ff = AttributeTester.GetFixedBuffer (fe.FieldInfo);
3493                                         if (ff != null) {
3494                                                 Expression fixed_buffer_ptr = new FixedBufferPtr (fe, ff.ElementType, loc);
3495                                         
3496                                                 Expression converted = Convert.ImplicitConversionRequired (
3497                                                         ec, fixed_buffer_ptr, vi.VariableType, loc);
3498                                                 if (converted == null)
3499                                                         return false;
3500
3501                                                 data [i] = new ExpressionEmitter (converted, vi);
3502                                                 i++;
3503
3504                                                 continue;
3505                                         }
3506                                 }
3507
3508                                 //
3509                                 // For other cases, flag a `this is already fixed expression'
3510                                 //
3511                                 if (e is LocalVariableReference || e is ParameterReference ||
3512                                     Convert.ImplicitConversionExists (ec, e, vi.VariableType)){
3513                                     
3514                                         Report.Error (245, loc, "right hand expression is already fixed, no need to use fixed statement ");
3515                                         return false;
3516                                 }
3517
3518                                 Report.Error (245, loc, "Fixed statement only allowed on strings, arrays or address-of expressions");
3519                                 return false;
3520                         }
3521
3522                         ec.StartFlowBranching (FlowBranching.BranchingType.Conditional, loc);
3523
3524                         if (!statement.Resolve (ec)) {
3525                                 ec.KillFlowBranching ();
3526                                 return false;
3527                         }
3528
3529                         FlowBranching.Reachability reachability = ec.EndFlowBranching ();
3530                         has_ret = reachability.IsUnreachable;
3531
3532                         return true;
3533                 }
3534                 
3535                 protected override void DoEmit (EmitContext ec)
3536                 {
3537                         for (int i = 0; i < data.Length; i++) {
3538                                 data [i].Emit (ec);
3539                         }
3540
3541                         statement.Emit (ec);
3542
3543                         if (has_ret)
3544                                 return;
3545
3546                         ILGenerator ig = ec.ig;
3547
3548                         //
3549                         // Clear the pinned variable
3550                         //
3551                         for (int i = 0; i < data.Length; i++) {
3552                                 data [i].EmitExit (ig);
3553                         }
3554                 }
3555         }
3556         
3557         public class Catch : Statement {
3558                 public readonly string Name;
3559                 public readonly Block  Block;
3560
3561                 Expression type_expr;
3562                 Type type;
3563                 
3564                 public Catch (Expression type, string name, Block block, Location l)
3565                 {
3566                         type_expr = type;
3567                         Name = name;
3568                         Block = block;
3569                         loc = l;
3570                 }
3571
3572                 public Type CatchType {
3573                         get {
3574                                 return type;
3575                         }
3576                 }
3577
3578                 public bool IsGeneral {
3579                         get {
3580                                 return type_expr == null;
3581                         }
3582                 }
3583
3584                 protected override void DoEmit(EmitContext ec)
3585                 {
3586                 }
3587
3588                 public override bool Resolve (EmitContext ec)
3589                 {
3590                         bool was_catch = ec.InCatch;
3591                         ec.InCatch = true;
3592                         try {
3593                                 if (type_expr != null) {
3594                                         TypeExpr te = type_expr.ResolveAsTypeTerminal (ec, false);
3595                                         if (te == null)
3596                                                 return false;
3597
3598                                         type = te.ResolveType (ec);
3599
3600                                         if (type != TypeManager.exception_type && !type.IsSubclassOf (TypeManager.exception_type)){
3601                                                 Error (155, "The type caught or thrown must be derived from System.Exception");
3602                                                 return false;
3603                                         }
3604                                 } else
3605                                         type = null;
3606
3607                                 return Block.Resolve (ec);
3608                         }
3609                         finally {
3610                                 ec.InCatch = was_catch;
3611                         }
3612                 }
3613         }
3614
3615         public class Try : ExceptionStatement {
3616                 public readonly Block Fini, Block;
3617                 public readonly ArrayList Specific;
3618                 public readonly Catch General;
3619
3620                 bool need_exc_block;
3621                 
3622                 //
3623                 // specific, general and fini might all be null.
3624                 //
3625                 public Try (Block block, ArrayList specific, Catch general, Block fini, Location l)
3626                 {
3627                         if (specific == null && general == null){
3628                                 Console.WriteLine ("CIR.Try: Either specific or general have to be non-null");
3629                         }
3630                         
3631                         this.Block = block;
3632                         this.Specific = specific;
3633                         this.General = general;
3634                         this.Fini = fini;
3635                         loc = l;
3636                 }
3637
3638                 public override bool Resolve (EmitContext ec)
3639                 {
3640                         bool ok = true;
3641                         
3642                         FlowBranchingException branching = ec.StartFlowBranching (this);
3643
3644                         Report.Debug (1, "START OF TRY BLOCK", Block.StartLocation);
3645
3646                         if (!Block.Resolve (ec))
3647                                 ok = false;
3648
3649                         FlowBranching.UsageVector vector = ec.CurrentBranching.CurrentUsageVector;
3650
3651                         Report.Debug (1, "START OF CATCH BLOCKS", vector);
3652
3653                         Type[] prevCatches = new Type [Specific.Count];
3654                         int last_index = 0;
3655                         foreach (Catch c in Specific){
3656                                 ec.CurrentBranching.CreateSibling (
3657                                         c.Block, FlowBranching.SiblingType.Catch);
3658
3659                                 Report.Debug (1, "STARTED SIBLING FOR CATCH", ec.CurrentBranching);
3660
3661                                 if (c.Name != null) {
3662                                         LocalInfo vi = c.Block.GetLocalInfo (c.Name);
3663                                         if (vi == null)
3664                                                 throw new Exception ();
3665
3666                                         vi.VariableInfo = null;
3667                                 }
3668
3669                                 if (!c.Resolve (ec))
3670                                         return false;
3671
3672                                 Type resolvedType = c.CatchType;
3673                                 for (int ii = 0; ii < last_index; ++ii) {
3674                                         if (resolvedType == prevCatches [ii] || resolvedType.IsSubclassOf (prevCatches [ii])) {
3675                                                 Report.Error (160, c.loc, "A previous catch clause already catches all exceptions of this or a super type `{0}'", prevCatches [ii].FullName);
3676                                                 return false;
3677                                         }
3678                                 }
3679
3680                                 prevCatches [last_index++] = resolvedType;
3681                                 need_exc_block = true;
3682                         }
3683
3684                         Report.Debug (1, "END OF CATCH BLOCKS", ec.CurrentBranching);
3685
3686                         if (General != null){
3687                                 if (CodeGen.Assembly.WrapNonExceptionThrows) {
3688                                         foreach (Catch c in Specific){
3689                                                 if (c.CatchType == TypeManager.exception_type) {
3690                                                         Report.Warning (1058, 1, c.loc, "A previous catch clause already catches all exceptions. All non-exceptions thrown will be wrapped in a `System.Runtime.CompilerServices.RuntimeWrappedException'");
3691                                                 }
3692                                         }
3693                                 }
3694
3695                                 ec.CurrentBranching.CreateSibling (
3696                                         General.Block, FlowBranching.SiblingType.Catch);
3697
3698                                 Report.Debug (1, "STARTED SIBLING FOR GENERAL", ec.CurrentBranching);
3699
3700                                 if (!General.Resolve (ec))
3701                                         ok = false;
3702
3703                                 need_exc_block = true;
3704                         }
3705
3706                         Report.Debug (1, "END OF GENERAL CATCH BLOCKS", ec.CurrentBranching);
3707
3708                         if (Fini != null) {
3709                                 if (ok)
3710                                         ec.CurrentBranching.CreateSibling (
3711                                                 Fini, FlowBranching.SiblingType.Finally);
3712
3713                                 Report.Debug (1, "STARTED SIBLING FOR FINALLY", ec.CurrentBranching, vector);
3714                                 bool was_finally = ec.InFinally;
3715                                 ec.InFinally = true;
3716                                 if (!Fini.Resolve (ec))
3717                                         ok = false;
3718                                 ec.InFinally = was_finally;
3719
3720                                 if (!ec.InIterator)
3721                                         need_exc_block = true;
3722                         }
3723
3724                         if (ec.InIterator) {
3725                                 ResolveFinally (branching);
3726                                 need_exc_block |= emit_finally;
3727                         } else
3728                                 emit_finally = Fini != null;
3729
3730                         FlowBranching.Reachability reachability = ec.EndFlowBranching ();
3731
3732                         FlowBranching.UsageVector f_vector = ec.CurrentBranching.CurrentUsageVector;
3733
3734                         Report.Debug (1, "END OF TRY", ec.CurrentBranching, reachability, vector, f_vector);
3735
3736                         if (reachability.Returns != FlowBranching.FlowReturns.Always) {
3737                                 // Unfortunately, System.Reflection.Emit automatically emits
3738                                 // a leave to the end of the finally block.  This is a problem
3739                                 // if `returns' is true since we may jump to a point after the
3740                                 // end of the method.
3741                                 // As a workaround, emit an explicit ret here.
3742                                 ec.NeedReturnLabel ();
3743                         }
3744
3745                         return ok;
3746                 }
3747                 
3748                 protected override void DoEmit (EmitContext ec)
3749                 {
3750                         ILGenerator ig = ec.ig;
3751
3752                         if (need_exc_block)
3753                                 ig.BeginExceptionBlock ();
3754                         Block.Emit (ec);
3755
3756                         foreach (Catch c in Specific){
3757                                 LocalInfo vi;
3758                                 
3759                                 ig.BeginCatchBlock (c.CatchType);
3760
3761                                 if (c.Name != null){
3762                                         vi = c.Block.GetLocalInfo (c.Name);
3763                                         if (vi == null)
3764                                                 throw new Exception ("Variable does not exist in this block");
3765
3766                                         ig.Emit (OpCodes.Stloc, vi.LocalBuilder);
3767                                         if (vi.IsCaptured){
3768                                                 ec.EmitCapturedVariableInstance (vi);
3769                                                 ig.Emit (OpCodes.Ldloc, vi.LocalBuilder);
3770                                                 ig.Emit (OpCodes.Stfld, vi.FieldBuilder);
3771                                         }
3772                                 } else
3773                                         ig.Emit (OpCodes.Pop);
3774                                 
3775                                 c.Block.Emit (ec);
3776                         }
3777
3778                         if (General != null){
3779                                 ig.BeginCatchBlock (TypeManager.object_type);
3780                                 ig.Emit (OpCodes.Pop);
3781                                 General.Block.Emit (ec);
3782                         }
3783
3784                         DoEmitFinally (ec);
3785                         if (need_exc_block)
3786                                 ig.EndExceptionBlock ();
3787                 }
3788
3789                 public override void EmitFinally (EmitContext ec)
3790                 {
3791                         if (Fini != null)
3792                                 Fini.Emit (ec);
3793                 }
3794
3795                 public bool HasCatch
3796                 {
3797                         get {
3798                                 return General != null || Specific.Count > 0;
3799                         }
3800                 }
3801         }
3802
3803         public class Using : ExceptionStatement {
3804                 object expression_or_block;
3805                 public Statement Statement;
3806                 ArrayList var_list;
3807                 Expression expr;
3808                 Type expr_type;
3809                 Expression [] resolved_vars;
3810                 Expression [] converted_vars;
3811                 ExpressionStatement [] assign;
3812                 LocalBuilder local_copy;
3813                 
3814                 public Using (object expression_or_block, Statement stmt, Location l)
3815                 {
3816                         this.expression_or_block = expression_or_block;
3817                         Statement = stmt;
3818                         loc = l;
3819                 }
3820
3821                 //
3822                 // Resolves for the case of using using a local variable declaration.
3823                 //
3824                 bool ResolveLocalVariableDecls (EmitContext ec)
3825                 {
3826                         int i = 0;
3827
3828                         TypeExpr texpr = expr.ResolveAsTypeTerminal (ec, false);
3829                         if (texpr == null)
3830                                 return false;
3831
3832                         expr_type = texpr.ResolveType (ec);
3833
3834                         //
3835                         // The type must be an IDisposable or an implicit conversion
3836                         // must exist.
3837                         //
3838                         converted_vars = new Expression [var_list.Count];
3839                         resolved_vars = new Expression [var_list.Count];
3840                         assign = new ExpressionStatement [var_list.Count];
3841
3842                         bool need_conv = !TypeManager.ImplementsInterface (
3843                                 expr_type, TypeManager.idisposable_type);
3844
3845                         foreach (DictionaryEntry e in var_list){
3846                                 Expression var = (Expression) e.Key;
3847
3848                                 var = var.ResolveLValue (ec, new EmptyExpression (), loc);
3849                                 if (var == null)
3850                                         return false;
3851
3852                                 resolved_vars [i] = var;
3853
3854                                 if (!need_conv) {
3855                                         i++;
3856                                         continue;
3857                                 }
3858
3859                                 converted_vars [i] = Convert.ImplicitConversion (
3860                                         ec, var, TypeManager.idisposable_type, loc);
3861
3862                                 if (converted_vars [i] == null) {
3863                                         Error_IsNotConvertibleToIDisposable ();
3864                                         return false;
3865                                 }
3866
3867                                 i++;
3868                         }
3869
3870                         i = 0;
3871                         foreach (DictionaryEntry e in var_list){
3872                                 Expression var = resolved_vars [i];
3873                                 Expression new_expr = (Expression) e.Value;
3874                                 Expression a;
3875
3876                                 a = new Assign (var, new_expr, loc);
3877                                 a = a.Resolve (ec);
3878                                 if (a == null)
3879                                         return false;
3880
3881                                 if (!need_conv)
3882                                         converted_vars [i] = var;
3883                                 assign [i] = (ExpressionStatement) a;
3884                                 i++;
3885                         }
3886
3887                         return true;
3888                 }
3889
3890                 void Error_IsNotConvertibleToIDisposable ()
3891                 {
3892                         Report.Error (1674, loc, "`{0}': type used in a using statement must be implicitly convertible to `System.IDisposable'",
3893                                 TypeManager.CSharpName (expr_type));
3894                 }
3895
3896                 bool ResolveExpression (EmitContext ec)
3897                 {
3898                         if (!TypeManager.ImplementsInterface (expr_type, TypeManager.idisposable_type)){
3899                                 if (Convert.ImplicitConversion (ec, expr, TypeManager.idisposable_type, loc) == null) {
3900                                         Error_IsNotConvertibleToIDisposable ();
3901                                         return false;
3902                                 }
3903                         }
3904
3905                         return true;
3906                 }
3907                 
3908                 //
3909                 // Emits the code for the case of using using a local variable declaration.
3910                 //
3911                 void EmitLocalVariableDecls (EmitContext ec)
3912                 {
3913                         ILGenerator ig = ec.ig;
3914                         int i = 0;
3915
3916                         for (i = 0; i < assign.Length; i++) {
3917                                 assign [i].EmitStatement (ec);
3918
3919                                 if (emit_finally)
3920                                         ig.BeginExceptionBlock ();
3921                         }
3922                         Statement.Emit (ec);
3923                         var_list.Reverse ();
3924
3925                         DoEmitFinally (ec);
3926                 }
3927
3928                 void EmitLocalVariableDeclFinally (EmitContext ec)
3929                 {
3930                         ILGenerator ig = ec.ig;
3931
3932                         int i = assign.Length;
3933                         for (int ii = 0; ii < var_list.Count; ++ii){
3934                                 Expression var = resolved_vars [--i];
3935                                 Label skip = ig.DefineLabel ();
3936
3937                                 if (!var.Type.IsValueType) {
3938                                         var.Emit (ec);
3939                                         ig.Emit (OpCodes.Brfalse, skip);
3940                                         converted_vars [i].Emit (ec);
3941                                         ig.Emit (OpCodes.Callvirt, TypeManager.void_dispose_void);
3942                                 } else {
3943                                         Expression ml = Expression.MemberLookup(ec, TypeManager.idisposable_type, var.Type, "Dispose", Mono.CSharp.Location.Null);
3944
3945                                         if (!(ml is MethodGroupExpr)) {
3946                                                 var.Emit (ec);
3947                                                 ig.Emit (OpCodes.Box, var.Type);
3948                                                 ig.Emit (OpCodes.Callvirt, TypeManager.void_dispose_void);
3949                                         } else {
3950                                                 MethodInfo mi = null;
3951
3952                                                 foreach (MethodInfo mk in ((MethodGroupExpr) ml).Methods) {
3953                                                         if (TypeManager.GetArgumentTypes (mk).Length == 0) {
3954                                                                 mi = mk;
3955                                                                 break;
3956                                                         }
3957                                                 }
3958
3959                                                 if (mi == null) {
3960                                                         Report.Error(-100, Mono.CSharp.Location.Null, "Internal error: No Dispose method which takes 0 parameters.");
3961                                                         return;
3962                                                 }
3963
3964                                                 IMemoryLocation mloc = (IMemoryLocation) var;
3965
3966                                                 mloc.AddressOf (ec, AddressOp.Load);
3967                                                 ig.Emit (OpCodes.Call, mi);
3968                                         }
3969                                 }
3970
3971                                 ig.MarkLabel (skip);
3972
3973                                 if (emit_finally) {
3974                                         ig.EndExceptionBlock ();
3975                                         if (i > 0)
3976                                                 ig.BeginFinallyBlock ();
3977                                 }
3978                         }
3979                 }
3980
3981                 void EmitExpression (EmitContext ec)
3982                 {
3983                         //
3984                         // Make a copy of the expression and operate on that.
3985                         //
3986                         ILGenerator ig = ec.ig;
3987                         local_copy = ig.DeclareLocal (expr_type);
3988
3989                         expr.Emit (ec);
3990                         ig.Emit (OpCodes.Stloc, local_copy);
3991
3992                         if (emit_finally)
3993                                 ig.BeginExceptionBlock ();
3994
3995                         Statement.Emit (ec);
3996                         
3997                         DoEmitFinally (ec);
3998                         if (emit_finally)
3999                                 ig.EndExceptionBlock ();
4000                 }
4001
4002                 void EmitExpressionFinally (EmitContext ec)
4003                 {
4004                         ILGenerator ig = ec.ig;
4005                         if (!local_copy.LocalType.IsValueType) {
4006                                 Label skip = ig.DefineLabel ();
4007                                 ig.Emit (OpCodes.Ldloc, local_copy);
4008                                 ig.Emit (OpCodes.Brfalse, skip);
4009                                 ig.Emit (OpCodes.Ldloc, local_copy);
4010                                 ig.Emit (OpCodes.Callvirt, TypeManager.void_dispose_void);
4011                                 ig.MarkLabel (skip);
4012                         } else {
4013                                 Expression ml = Expression.MemberLookup(ec, TypeManager.idisposable_type, local_copy.LocalType, "Dispose", Mono.CSharp.Location.Null);
4014
4015                                 if (!(ml is MethodGroupExpr)) {
4016                                         ig.Emit (OpCodes.Ldloc, local_copy);
4017                                         ig.Emit (OpCodes.Box, local_copy.LocalType);
4018                                         ig.Emit (OpCodes.Callvirt, TypeManager.void_dispose_void);
4019                                 } else {
4020                                         MethodInfo mi = null;
4021
4022                                         foreach (MethodInfo mk in ((MethodGroupExpr) ml).Methods) {
4023                                                 if (TypeManager.GetArgumentTypes (mk).Length == 0) {
4024                                                         mi = mk;
4025                                                         break;
4026                                                 }
4027                                         }
4028
4029                                         if (mi == null) {
4030                                                 Report.Error(-100, Mono.CSharp.Location.Null, "Internal error: No Dispose method which takes 0 parameters.");
4031                                                 return;
4032                                         }
4033
4034                                         ig.Emit (OpCodes.Ldloca, local_copy);
4035                                         ig.Emit (OpCodes.Call, mi);
4036                                 }
4037                         }
4038                 }
4039                 
4040                 public override bool Resolve (EmitContext ec)
4041                 {
4042                         if (expression_or_block is DictionaryEntry){
4043                                 expr = (Expression) ((DictionaryEntry) expression_or_block).Key;
4044                                 var_list = (ArrayList)((DictionaryEntry)expression_or_block).Value;
4045
4046                                 if (!ResolveLocalVariableDecls (ec))
4047                                         return false;
4048
4049                         } else if (expression_or_block is Expression){
4050                                 expr = (Expression) expression_or_block;
4051
4052                                 expr = expr.Resolve (ec);
4053                                 if (expr == null)
4054                                         return false;
4055
4056                                 expr_type = expr.Type;
4057
4058                                 if (!ResolveExpression (ec))
4059                                         return false;
4060                         }
4061
4062                         FlowBranchingException branching = ec.StartFlowBranching (this);
4063
4064                         bool ok = Statement.Resolve (ec);
4065
4066                         if (!ok) {
4067                                 ec.KillFlowBranching ();
4068                                 return false;
4069                         }
4070
4071                         ResolveFinally (branching);                                     
4072                         FlowBranching.Reachability reachability = ec.EndFlowBranching ();
4073
4074                         if (reachability.Returns != FlowBranching.FlowReturns.Always) {
4075                                 // Unfortunately, System.Reflection.Emit automatically emits a leave
4076                                 // to the end of the finally block.  This is a problem if `returns'
4077                                 // is true since we may jump to a point after the end of the method.
4078                                 // As a workaround, emit an explicit ret here.
4079                                 ec.NeedReturnLabel ();
4080                         }
4081
4082                         return true;
4083                 }
4084                 
4085                 protected override void DoEmit (EmitContext ec)
4086                 {
4087                         if (expression_or_block is DictionaryEntry)
4088                                 EmitLocalVariableDecls (ec);
4089                         else if (expression_or_block is Expression)
4090                                 EmitExpression (ec);
4091                 }
4092
4093                 public override void EmitFinally (EmitContext ec)
4094                 {
4095                         if (expression_or_block is DictionaryEntry)
4096                                 EmitLocalVariableDeclFinally (ec);
4097                         else if (expression_or_block is Expression)
4098                                 EmitExpressionFinally (ec);
4099                 }
4100         }
4101
4102         /// <summary>
4103         ///   Implementation of the foreach C# statement
4104         /// </summary>
4105         public class Foreach : Statement {
4106                 Expression type;
4107                 Expression variable;
4108                 Expression expr;
4109                 Statement statement;
4110                 ArrayForeach array;
4111                 CollectionForeach collection;
4112                 
4113                 public Foreach (Expression type, LocalVariableReference var, Expression expr,
4114                                 Statement stmt, Location l)
4115                 {
4116                         this.type = type;
4117                         this.variable = var;
4118                         this.expr = expr;
4119                         statement = stmt;
4120                         loc = l;
4121                 }
4122
4123                 public Statement Statement {
4124                         get { return statement; }
4125                 }
4126
4127                 public override bool Resolve (EmitContext ec)
4128                 {
4129                         expr = expr.Resolve (ec);
4130                         if (expr == null)
4131                                 return false;
4132
4133                         if (expr is NullLiteral) {
4134                                 Report.Error (186, loc, "Use of null is not valid in this context");
4135                                 return false;
4136                         }
4137
4138                         TypeExpr texpr = type.ResolveAsTypeTerminal (ec, false);
4139                         if (texpr == null)
4140                                 return false;
4141
4142                         Type var_type = texpr.Type;
4143
4144                         if (expr.eclass == ExprClass.MethodGroup || expr is AnonymousMethod) {
4145                                 Report.Error (446, expr.Location, "Foreach statement cannot operate on a `{0}'",
4146                                         expr.ExprClassName);
4147                                 return false;
4148                         }
4149
4150                         //
4151                         // We need an instance variable.  Not sure this is the best
4152                         // way of doing this.
4153                         //
4154                         // FIXME: When we implement propertyaccess, will those turn
4155                         // out to return values in ExprClass?  I think they should.
4156                         //
4157                         if (!(expr.eclass == ExprClass.Variable || expr.eclass == ExprClass.Value ||
4158                               expr.eclass == ExprClass.PropertyAccess || expr.eclass == ExprClass.IndexerAccess)){
4159                                 collection.Error_Enumerator ();
4160                                 return false;
4161                         }
4162
4163                         if (expr.Type.IsArray) {
4164                                 array = new ArrayForeach (var_type, variable, expr, statement, loc);
4165                                 return array.Resolve (ec);
4166                         } else {
4167                                 collection = new CollectionForeach (
4168                                         var_type, variable, expr, statement, loc);
4169                                 return collection.Resolve (ec);
4170                         }
4171                 }
4172
4173                 protected override void DoEmit (EmitContext ec)
4174                 {
4175                         ILGenerator ig = ec.ig;
4176                         
4177                         Label old_begin = ec.LoopBegin, old_end = ec.LoopEnd;
4178                         ec.LoopBegin = ig.DefineLabel ();
4179                         ec.LoopEnd = ig.DefineLabel ();
4180
4181                         if (collection != null)
4182                                 collection.Emit (ec);
4183                         else
4184                                 array.Emit (ec);
4185                         
4186                         ec.LoopBegin = old_begin;
4187                         ec.LoopEnd = old_end;
4188                 }
4189
4190                 protected class ArrayCounter : TemporaryVariable
4191                 {
4192                         public ArrayCounter (Location loc)
4193                                 : base (TypeManager.int32_type, loc)
4194                         { }
4195
4196                         public void Initialize (EmitContext ec)
4197                         {
4198                                 EmitThis (ec);
4199                                 ec.ig.Emit (OpCodes.Ldc_I4_0);
4200                                 EmitStore (ec.ig);
4201                         }
4202
4203                         public void Increment (EmitContext ec)
4204                         {
4205                                 EmitThis (ec);
4206                                 Emit (ec);
4207                                 ec.ig.Emit (OpCodes.Ldc_I4_1);
4208                                 ec.ig.Emit (OpCodes.Add);
4209                                 EmitStore (ec.ig);
4210                         }
4211                 }
4212
4213                 protected class ArrayForeach : Statement
4214                 {
4215                         Expression variable, expr, conv;
4216                         Statement statement;
4217                         Type array_type;
4218                         Type var_type;
4219                         TemporaryVariable[] lengths;
4220                         ArrayCounter[] counter;
4221                         int rank;
4222
4223                         TemporaryVariable copy;
4224                         Expression access;
4225
4226                         public ArrayForeach (Type var_type, Expression var,
4227                                              Expression expr, Statement stmt, Location l)
4228                         {
4229                                 this.var_type = var_type;
4230                                 this.variable = var;
4231                                 this.expr = expr;
4232                                 statement = stmt;
4233                                 loc = l;
4234                         }
4235
4236                         public override bool Resolve (EmitContext ec)
4237                         {
4238                                 array_type = expr.Type;
4239                                 rank = array_type.GetArrayRank ();
4240
4241                                 copy = new TemporaryVariable (array_type, loc);
4242                                 copy.Resolve (ec);
4243
4244                                 counter = new ArrayCounter [rank];
4245                                 lengths = new TemporaryVariable [rank];
4246
4247                                 ArrayList list = new ArrayList ();
4248                                 for (int i = 0; i < rank; i++) {
4249                                         counter [i] = new ArrayCounter (loc);
4250                                         counter [i].Resolve (ec);
4251
4252                                         lengths [i] = new TemporaryVariable (TypeManager.int32_type, loc);
4253                                         lengths [i].Resolve (ec);
4254
4255                                         list.Add (counter [i]);
4256                                 }
4257
4258                                 access = new ElementAccess (copy, list).Resolve (ec);
4259                                 if (access == null)
4260                                         return false;
4261
4262                                 conv = Convert.ExplicitConversion (ec, access, var_type, loc);
4263                                 if (conv == null)
4264                                         return false;
4265
4266                                 bool ok = true;
4267
4268                                 ec.StartFlowBranching (FlowBranching.BranchingType.Loop, loc);
4269                                 ec.CurrentBranching.CreateSibling ();
4270
4271                                 variable = variable.ResolveLValue (ec, conv, loc);
4272                                 if (variable == null)
4273                                         ok = false;
4274
4275                                 if (!statement.Resolve (ec))
4276                                         ok = false;
4277
4278                                 ec.EndFlowBranching ();
4279
4280                                 return ok;
4281                         }
4282
4283                         protected override void DoEmit (EmitContext ec)
4284                         {
4285                                 ILGenerator ig = ec.ig;
4286
4287                                 copy.Store (ec, expr);
4288
4289                                 Label[] test = new Label [rank];
4290                                 Label[] loop = new Label [rank];
4291
4292                                 for (int i = 0; i < rank; i++) {
4293                                         test [i] = ig.DefineLabel ();
4294                                         loop [i] = ig.DefineLabel ();
4295
4296                                         lengths [i].EmitThis (ec);
4297                                         ((ArrayAccess) access).EmitGetLength (ec, i);
4298                                         lengths [i].EmitStore (ig);
4299                                 }
4300
4301                                 for (int i = 0; i < rank; i++) {
4302                                         counter [i].Initialize (ec);
4303
4304                                         ig.Emit (OpCodes.Br, test [i]);
4305                                         ig.MarkLabel (loop [i]);
4306                                 }
4307
4308                                 ((IAssignMethod) variable).EmitAssign (ec, conv, false, false);
4309
4310                                 statement.Emit (ec);
4311
4312                                 ig.MarkLabel (ec.LoopBegin);
4313
4314                                 for (int i = rank - 1; i >= 0; i--){
4315                                         counter [i].Increment (ec);
4316
4317                                         ig.MarkLabel (test [i]);
4318                                         counter [i].Emit (ec);
4319                                         lengths [i].Emit (ec);
4320                                         ig.Emit (OpCodes.Blt, loop [i]);
4321                                 }
4322
4323                                 ig.MarkLabel (ec.LoopEnd);
4324                         }
4325                 }
4326
4327                 protected class CollectionForeach : ExceptionStatement
4328                 {
4329                         Expression variable, expr;
4330                         Statement statement;
4331
4332                         TemporaryVariable enumerator;
4333                         Expression init;
4334                         Statement loop;
4335
4336                         MethodGroupExpr get_enumerator;
4337                         PropertyExpr get_current;
4338                         MethodInfo move_next;
4339                         Type var_type, enumerator_type;
4340                         bool is_disposable;
4341                         bool enumerator_found;
4342
4343                         public CollectionForeach (Type var_type, Expression var,
4344                                                   Expression expr, Statement stmt, Location l)
4345                         {
4346                                 this.var_type = var_type;
4347                                 this.variable = var;
4348                                 this.expr = expr;
4349                                 statement = stmt;
4350                                 loc = l;
4351                         }
4352
4353                         bool GetEnumeratorFilter (EmitContext ec, MethodInfo mi)
4354                         {
4355                                 Type return_type = mi.ReturnType;
4356
4357                                 if ((return_type == TypeManager.ienumerator_type) && (mi.DeclaringType == TypeManager.string_type))
4358                                         //
4359                                         // Apply the same optimization as MS: skip the GetEnumerator
4360                                         // returning an IEnumerator, and use the one returning a 
4361                                         // CharEnumerator instead. This allows us to avoid the 
4362                                         // try-finally block and the boxing.
4363                                         //
4364                                         return false;
4365
4366                                 //
4367                                 // Ok, we can access it, now make sure that we can do something
4368                                 // with this `GetEnumerator'
4369                                 //
4370
4371                                 if (return_type == TypeManager.ienumerator_type ||
4372                                     TypeManager.ienumerator_type.IsAssignableFrom (return_type) ||
4373                                     (!RootContext.StdLib && TypeManager.ImplementsInterface (return_type, TypeManager.ienumerator_type))) {
4374                                         //
4375                                         // If it is not an interface, lets try to find the methods ourselves.
4376                                         // For example, if we have:
4377                                         // public class Foo : IEnumerator { public bool MoveNext () {} public int Current { get {}}}
4378                                         // We can avoid the iface call. This is a runtime perf boost.
4379                                         // even bigger if we have a ValueType, because we avoid the cost
4380                                         // of boxing.
4381                                         //
4382                                         // We have to make sure that both methods exist for us to take
4383                                         // this path. If one of the methods does not exist, we will just
4384                                         // use the interface. Sadly, this complex if statement is the only
4385                                         // way I could do this without a goto
4386                                         //
4387
4388                                         if (return_type.IsInterface ||
4389                                             !FetchMoveNext (ec, return_type) ||
4390                                             !FetchGetCurrent (ec, return_type)) {
4391                                                 move_next = TypeManager.bool_movenext_void;
4392                                                 get_current = new PropertyExpr (
4393                                                         ec, TypeManager.ienumerator_getcurrent, loc);
4394                                                 return true;
4395                                         }
4396                                 } else {
4397                                         //
4398                                         // Ok, so they dont return an IEnumerable, we will have to
4399                                         // find if they support the GetEnumerator pattern.
4400                                         //
4401
4402                                         if (TypeManager.HasElementType (return_type) || !FetchMoveNext (ec, return_type) || !FetchGetCurrent (ec, return_type)) {
4403                                                 Report.Error (202, loc, "foreach statement requires that the return type `{0}' of `{1}' must have a suitable public MoveNext method and public Current property",
4404                                                         TypeManager.CSharpName (return_type), TypeManager.CSharpSignature (mi));
4405                                                 return false;
4406                                         }
4407                                 }
4408
4409                                 enumerator_type = return_type;
4410                                 is_disposable = !enumerator_type.IsSealed ||
4411                                         TypeManager.ImplementsInterface (
4412                                                 enumerator_type, TypeManager.idisposable_type);
4413
4414                                 return true;
4415                         }
4416
4417                         //
4418                         // Retrieves a `public bool MoveNext ()' method from the Type `t'
4419                         //
4420                         bool FetchMoveNext (EmitContext ec, Type t)
4421                         {
4422                                 MemberList move_next_list;
4423
4424                                 move_next_list = TypeContainer.FindMembers (
4425                                         t, MemberTypes.Method,
4426                                         BindingFlags.Public | BindingFlags.Instance,
4427                                         Type.FilterName, "MoveNext");
4428                                 if (move_next_list.Count == 0)
4429                                         return false;
4430
4431                                 foreach (MemberInfo m in move_next_list){
4432                                         MethodInfo mi = (MethodInfo) m;
4433                                         Type [] args;
4434                                 
4435                                         args = TypeManager.GetArgumentTypes (mi);
4436                                         if ((args != null) && (args.Length == 0) &&
4437                                             TypeManager.TypeToCoreType (mi.ReturnType) == TypeManager.bool_type) {
4438                                                 move_next = mi;
4439                                                 return true;
4440                                         }
4441                                 }
4442
4443                                 return false;
4444                         }
4445                 
4446                         //
4447                         // Retrieves a `public T get_Current ()' method from the Type `t'
4448                         //
4449                         bool FetchGetCurrent (EmitContext ec, Type t)
4450                         {
4451                                 PropertyExpr pe = Expression.MemberLookup (
4452                                         ec, t, "Current", MemberTypes.Property,
4453                                         Expression.AllBindingFlags, loc) as PropertyExpr;
4454                                 if (pe == null)
4455                                         return false;
4456
4457                                 get_current = pe;
4458                                 return true;
4459                         }
4460
4461                         // 
4462                         // Retrieves a `public void Dispose ()' method from the Type `t'
4463                         //
4464                         static MethodInfo FetchMethodDispose (Type t)
4465                         {
4466                                 MemberList dispose_list;
4467
4468                                 dispose_list = TypeContainer.FindMembers (
4469                                         t, MemberTypes.Method,
4470                                         BindingFlags.Public | BindingFlags.Instance,
4471                                         Type.FilterName, "Dispose");
4472                                 if (dispose_list.Count == 0)
4473                                         return null;
4474
4475                                 foreach (MemberInfo m in dispose_list){
4476                                         MethodInfo mi = (MethodInfo) m;
4477                                         Type [] args;
4478
4479                                         args = TypeManager.GetArgumentTypes (mi);
4480                                         if (args != null && args.Length == 0){
4481                                                 if (mi.ReturnType == TypeManager.void_type)
4482                                                         return mi;
4483                                         }
4484                                 }
4485                                 return null;
4486                         }
4487
4488                         public void Error_Enumerator ()
4489                         {
4490                                 if (enumerator_found) {
4491                                         return;
4492                                 }
4493
4494                             Report.Error (1579, loc,
4495                                         "foreach statement cannot operate on variables of type `{0}' because it does not contain a definition for `GetEnumerator' or is not accessible",
4496                                         TypeManager.CSharpName (expr.Type));
4497                         }
4498
4499                         bool TryType (EmitContext ec, Type t)
4500                         {
4501                                 MethodGroupExpr mg = Expression.MemberLookup (
4502                                         ec, t, "GetEnumerator", MemberTypes.Method,
4503                                         Expression.AllBindingFlags, loc) as MethodGroupExpr;
4504                                 if (mg == null)
4505                                         return false;
4506
4507                                 foreach (MethodBase mb in mg.Methods) {
4508                                         Type [] args = TypeManager.GetArgumentTypes (mb);
4509                                         if (args != null && args.Length != 0)
4510                                                 continue;
4511                         
4512                                         // Check whether GetEnumerator is public
4513                                         if ((mb.Attributes & MethodAttributes.Public) != MethodAttributes.Public)
4514                                                 continue;
4515
4516                                         if (TypeManager.IsOverride (mb))
4517                                                 continue;
4518
4519                                         enumerator_found = true;
4520
4521                                         if (!GetEnumeratorFilter (ec, (MethodInfo) mb))
4522                                                 continue;
4523
4524                                         MethodInfo[] mi = new MethodInfo[] { (MethodInfo) mb };
4525                                         get_enumerator = new MethodGroupExpr (mi, loc);
4526
4527                                         if (t != expr.Type) {
4528                                                 expr = Convert.ExplicitConversion (
4529                                                         ec, expr, t, loc);
4530                                                 if (expr == null)
4531                                                         throw new InternalErrorException ();
4532                                         }
4533
4534                                         get_enumerator.InstanceExpression = expr;
4535                                         get_enumerator.IsBase = t != expr.Type;
4536
4537                                         return true;
4538                                 }
4539
4540                                 return false;
4541                         }               
4542
4543                         bool ProbeCollectionType (EmitContext ec, Type t)
4544                         {
4545                                 for (Type tt = t; tt != null && tt != TypeManager.object_type;){
4546                                         if (TryType (ec, tt))
4547                                                 return true;
4548                                         tt = tt.BaseType;
4549                                 }
4550
4551                                 //
4552                                 // Now try to find the method in the interfaces
4553                                 //
4554                                 while (t != null){
4555                                         Type [] ifaces = t.GetInterfaces ();
4556
4557                                         foreach (Type i in ifaces){
4558                                                 if (TryType (ec, i))
4559                                                         return true;
4560                                         }
4561                                 
4562                                         //
4563                                         // Since TypeBuilder.GetInterfaces only returns the interface
4564                                         // types for this type, we have to keep looping, but once
4565                                         // we hit a non-TypeBuilder (ie, a Type), then we know we are
4566                                         // done, because it returns all the types
4567                                         //
4568                                         if ((t is TypeBuilder))
4569                                                 t = t.BaseType;
4570                                         else
4571                                                 break;
4572                                 }
4573
4574                                 return false;
4575                         }
4576
4577                         public override bool Resolve (EmitContext ec)
4578                         {
4579                                 enumerator_type = TypeManager.ienumerator_type;
4580                                 is_disposable = true;
4581
4582                                 if (!ProbeCollectionType (ec, expr.Type)) {
4583                                         Error_Enumerator ();
4584                                         return false;
4585                                 }
4586
4587                                 enumerator = new TemporaryVariable (enumerator_type, loc);
4588                                 enumerator.Resolve (ec);
4589
4590                                 init = new Invocation (get_enumerator, new ArrayList ());
4591                                 init = init.Resolve (ec);
4592                                 if (init == null)
4593                                         return false;
4594
4595                                 Expression move_next_expr;
4596                                 {
4597                                         MemberInfo[] mi = new MemberInfo[] { move_next };
4598                                         MethodGroupExpr mg = new MethodGroupExpr (mi, loc);
4599                                         mg.InstanceExpression = enumerator;
4600
4601                                         move_next_expr = new Invocation (mg, new ArrayList ());
4602                                 }
4603
4604                                 get_current.InstanceExpression = enumerator;
4605
4606                                 Statement block = new CollectionForeachStatement (
4607                                         var_type, variable, get_current, statement, loc);
4608
4609                                 loop = new While (move_next_expr, block, loc);
4610
4611                                 bool ok = true;
4612
4613                                 ec.StartFlowBranching (FlowBranching.BranchingType.Loop, loc);
4614                                 ec.CurrentBranching.CreateSibling ();
4615
4616                                 FlowBranchingException branching = null;
4617                                 if (is_disposable)
4618                                         branching = ec.StartFlowBranching (this);
4619
4620                                 if (!loop.Resolve (ec))
4621                                         ok = false;
4622
4623                                 if (is_disposable) {
4624                                         ResolveFinally (branching);
4625                                         ec.EndFlowBranching ();
4626                                 } else
4627                                         emit_finally = true;
4628
4629                                 ec.EndFlowBranching ();
4630
4631                                 return ok;
4632                         }
4633
4634                         protected override void DoEmit (EmitContext ec)
4635                         {
4636                                 ILGenerator ig = ec.ig;
4637
4638                                 enumerator.Store (ec, init);
4639
4640                                 //
4641                                 // Protect the code in a try/finalize block, so that
4642                                 // if the beast implement IDisposable, we get rid of it
4643                                 //
4644                                 if (is_disposable && emit_finally)
4645                                         ig.BeginExceptionBlock ();
4646                         
4647                                 loop.Emit (ec);
4648
4649                                 //
4650                                 // Now the finally block
4651                                 //
4652                                 if (is_disposable) {
4653                                         DoEmitFinally (ec);
4654                                         if (emit_finally)
4655                                                 ig.EndExceptionBlock ();
4656                                 }
4657                         }
4658
4659
4660                         public override void EmitFinally (EmitContext ec)
4661                         {
4662                                 ILGenerator ig = ec.ig;
4663
4664                                 if (enumerator_type.IsValueType) {
4665                                         enumerator.Emit (ec);
4666
4667                                         MethodInfo mi = FetchMethodDispose (enumerator_type);
4668                                         if (mi != null) {
4669                                                 enumerator.EmitLoadAddress (ec);
4670                                                 ig.Emit (OpCodes.Call, mi);
4671                                         } else {
4672                                                 enumerator.Emit (ec);
4673                                                 ig.Emit (OpCodes.Box, enumerator_type);
4674                                                 ig.Emit (OpCodes.Callvirt, TypeManager.void_dispose_void);
4675                                         }
4676                                 } else {
4677                                         Label call_dispose = ig.DefineLabel ();
4678
4679                                         enumerator.Emit (ec);
4680                                         ig.Emit (OpCodes.Isinst, TypeManager.idisposable_type);
4681                                         ig.Emit (OpCodes.Dup);
4682                                         ig.Emit (OpCodes.Brtrue_S, call_dispose);
4683                                         ig.Emit (OpCodes.Pop);
4684
4685                                         Label end_finally = ig.DefineLabel ();
4686                                         ig.Emit (OpCodes.Br, end_finally);
4687
4688                                         ig.MarkLabel (call_dispose);
4689                                         ig.Emit (OpCodes.Callvirt, TypeManager.void_dispose_void);
4690                                         ig.MarkLabel (end_finally);
4691                                 }
4692                         }
4693                 }
4694
4695                 protected class CollectionForeachStatement : Statement
4696                 {
4697                         Type type;
4698                         Expression variable, current, conv;
4699                         Statement statement;
4700                         Assign assign;
4701
4702                         public CollectionForeachStatement (Type type, Expression variable,
4703                                                            Expression current, Statement statement,
4704                                                            Location loc)
4705                         {
4706                                 this.type = type;
4707                                 this.variable = variable;
4708                                 this.current = current;
4709                                 this.statement = statement;
4710                                 this.loc = loc;
4711                         }
4712
4713                         public override bool Resolve (EmitContext ec)
4714                         {
4715                                 current = current.Resolve (ec);
4716                                 if (current == null)
4717                                         return false;
4718
4719                                 conv = Convert.ExplicitConversion (ec, current, type, loc);
4720                                 if (conv == null)
4721                                         return false;
4722
4723                                 assign = new Assign (variable, conv, loc);
4724                                 if (assign.Resolve (ec) == null)
4725                                         return false;
4726
4727                                 if (!statement.Resolve (ec))
4728                                         return false;
4729
4730                                 return true;
4731                         }
4732
4733                         protected override void DoEmit (EmitContext ec)
4734                         {
4735                                 assign.EmitStatement (ec);
4736                                 statement.Emit (ec);
4737                         }
4738                 }
4739         }
4740 }