[mcs] Fixes codegen for type pattern matching in probing expressions over hoisted...
[mono.git] / mcs / mcs / anonymous.cs
1 //
2 // anonymous.cs: Support for anonymous methods and types
3 //
4 // Author:
5 //   Miguel de Icaza (miguel@ximain.com)
6 //   Marek Safar (marek.safar@gmail.com)
7 //
8 // Dual licensed under the terms of the MIT X11 or GNU GPL
9 // Copyright 2003-2011 Novell, Inc.
10 // Copyright 2011 Xamarin Inc
11 //
12
13 using System;
14 using System.Collections.Generic;
15 using Mono.CompilerServices.SymbolWriter;
16 using System.Diagnostics;
17
18 #if STATIC
19 using IKVM.Reflection;
20 using IKVM.Reflection.Emit;
21 #else
22 using System.Reflection;
23 using System.Reflection.Emit;
24 #endif
25
26 namespace Mono.CSharp {
27
28         public abstract class CompilerGeneratedContainer : ClassOrStruct
29         {
30                 protected CompilerGeneratedContainer (TypeContainer parent, MemberName name, Modifiers mod)
31                         : this (parent, name, mod, MemberKind.Class)
32                 {
33                 }
34
35                 protected CompilerGeneratedContainer (TypeContainer parent, MemberName name, Modifiers mod, MemberKind kind)
36                         : base (parent, name, null, kind)
37                 {
38                         Debug.Assert ((mod & Modifiers.AccessibilityMask) != 0);
39
40                         ModFlags = mod | Modifiers.COMPILER_GENERATED | Modifiers.SEALED;
41                         spec = new TypeSpec (Kind, null, this, null, ModFlags);
42                 }
43
44                 protected void CheckMembersDefined ()
45                 {
46                         if (HasMembersDefined)
47                                 throw new InternalErrorException ("Helper class already defined!");
48                 }
49
50                 protected override bool DoDefineMembers ()
51                 {
52                         if (Kind == MemberKind.Class && !IsStatic && !PartialContainer.HasInstanceConstructor) {
53                                 DefineDefaultConstructor (false);
54                         }
55
56                         return base.DoDefineMembers ();
57                 }
58
59                 protected static MemberName MakeMemberName (MemberBase host, string name, int unique_id, TypeParameters tparams, Location loc)
60                 {
61                         string host_name = host == null ? null : host is InterfaceMemberBase ? ((InterfaceMemberBase)host).GetFullName (host.MemberName) : host.MemberName.Name;
62                         string tname = MakeName (host_name, "c", name, unique_id);
63                         TypeParameters args = null;
64                         if (tparams != null) {
65                                 args = new TypeParameters (tparams.Count);
66
67                                 // Type parameters will be filled later when we have TypeContainer
68                                 // instance, for now we need only correct arity to create valid name
69                                 for (int i = 0; i < tparams.Count; ++i)
70                                         args.Add ((TypeParameter) null);
71                         }
72
73                         return new MemberName (tname, args, loc);
74                 }
75
76                 public static string MakeName (string host, string typePrefix, string name, int id)
77                 {
78                         return "<" + host + ">" + typePrefix + "__" + name + id.ToString ("X");
79                 }
80
81                 protected override TypeSpec[] ResolveBaseTypes (out FullNamedExpression base_class)
82                 {
83                         base_type = Compiler.BuiltinTypes.Object;
84
85                         base_class = null;
86                         return null;
87                 }
88         }
89
90         public class HoistedStoreyClass : CompilerGeneratedContainer
91         {
92                 public sealed class HoistedField : Field
93                 {
94                         public HoistedField (HoistedStoreyClass parent, FullNamedExpression type, Modifiers mod, string name,
95                                   Attributes attrs, Location loc)
96                                 : base (parent, type, mod, new MemberName (name, loc), attrs)
97                         {
98                         }
99
100                         protected override bool ResolveMemberType ()
101                         {
102                                 if (!base.ResolveMemberType ())
103                                         return false;
104
105                                 HoistedStoreyClass parent = ((HoistedStoreyClass) Parent).GetGenericStorey ();
106                                 if (parent != null && parent.Mutator != null)
107                                         member_type = parent.Mutator.Mutate (MemberType);
108
109                                 return true;
110                         }
111                 }
112
113                 protected TypeParameterMutator mutator;
114
115                 public HoistedStoreyClass (TypeDefinition parent, MemberName name, TypeParameters tparams, Modifiers mods, MemberKind kind)
116                         : base (parent, name, mods | Modifiers.PRIVATE, kind)
117                 {
118
119                         if (tparams != null) {
120                                 var type_params = name.TypeParameters;
121                                 var src = new TypeParameterSpec[tparams.Count];
122                                 var dst = new TypeParameterSpec[tparams.Count];
123
124                                 for (int i = 0; i < tparams.Count; ++i) {
125                                         type_params[i] = tparams[i].CreateHoistedCopy (spec);
126
127                                         src[i] = tparams[i].Type;
128                                         dst[i] = type_params[i].Type;
129                                 }
130
131                                 // A copy is not enough, inflate any type parameter constraints
132                                 // using a new type parameters
133                                 var inflator = new TypeParameterInflator (this, null, src, dst);
134                                 for (int i = 0; i < tparams.Count; ++i) {
135                                         src[i].InflateConstraints (inflator, dst[i]);
136                                 }
137
138                                 mutator = new TypeParameterMutator (tparams, type_params);
139                         }
140                 }
141
142                 #region Properties
143
144                 public TypeParameterMutator Mutator {
145                         get {
146                                 return mutator;
147                         }
148                         set {
149                                 mutator = value;
150                         }
151                 }
152
153                 #endregion
154
155                 public HoistedStoreyClass GetGenericStorey ()
156                 {
157                         TypeContainer storey = this;
158                         while (storey != null && storey.CurrentTypeParameters == null)
159                                 storey = storey.Parent;
160
161                         return storey as HoistedStoreyClass;
162                 }
163         }
164
165
166         //
167         // Anonymous method storey is created when an anonymous method uses
168         // variable or parameter from outer scope. They are then hoisted to
169         // anonymous method storey (captured)
170         //
171         public class AnonymousMethodStorey : HoistedStoreyClass
172         {
173                 struct StoreyFieldPair
174                 {
175                         public readonly AnonymousMethodStorey Storey;
176                         public readonly Field Field;
177
178                         public StoreyFieldPair (AnonymousMethodStorey storey, Field field)
179                         {
180                                 this.Storey = storey;
181                                 this.Field = field;
182                         }
183                 }
184
185                 //
186                 // Needed to delay hoisted _this_ initialization. When an anonymous
187                 // method is used inside ctor and _this_ is hoisted, base ctor has to
188                 // be called first, otherwise _this_ will be initialized with 
189                 // uninitialized value.
190                 //
191                 sealed class ThisInitializer : Statement
192                 {
193                         readonly HoistedThis hoisted_this;
194                         readonly AnonymousMethodStorey parent;
195
196                         public ThisInitializer (HoistedThis hoisted_this, AnonymousMethodStorey parent)
197                         {
198                                 this.hoisted_this = hoisted_this;
199                                 this.parent = parent;
200                         }
201
202                         protected override void DoEmit (EmitContext ec)
203                         {
204                                 Expression source;
205
206                                 if (parent == null)
207                                         source = new CompilerGeneratedThis (ec.CurrentType, loc);
208                                 else {
209                                         source = new FieldExpr (parent.HoistedThis.Field, Location.Null) {
210                                                 InstanceExpression = new CompilerGeneratedThis (ec.CurrentType, Location.Null)
211                                         };
212                                 }
213
214                                 hoisted_this.EmitAssign (ec, source, false, false);
215                         }
216
217                         protected override bool DoFlowAnalysis (FlowAnalysisContext fc)
218                         {
219                                 return false;
220                         }
221
222                         protected override void CloneTo (CloneContext clonectx, Statement target)
223                         {
224                                 // Nothing to clone
225                         }
226                 }
227
228                 // Unique storey ID
229                 public readonly int ID;
230
231                 public readonly ExplicitBlock OriginalSourceBlock;
232
233                 // A list of StoreyFieldPair with local field keeping parent storey instance
234                 List<StoreyFieldPair> used_parent_storeys;
235                 List<ExplicitBlock> children_references;
236
237                 // A list of hoisted parameters
238                 protected List<HoistedParameter> hoisted_params;
239                 List<HoistedParameter> hoisted_local_params;
240                 protected List<HoistedVariable> hoisted_locals;
241
242                 // Hoisted this
243                 protected HoistedThis hoisted_this;
244
245                 // Local variable which holds this storey instance
246                 public Expression Instance;
247
248                 bool initialize_hoisted_this;
249                 AnonymousMethodStorey hoisted_this_parent;
250
251                 public AnonymousMethodStorey (ExplicitBlock block, TypeDefinition parent, MemberBase host, TypeParameters tparams, string name, MemberKind kind)
252                         : base (parent, MakeMemberName (host, name, parent.PartialContainer.CounterAnonymousContainers, tparams, block.StartLocation),
253                                 tparams, 0, kind)
254                 {
255                         OriginalSourceBlock = block;
256                         ID = parent.PartialContainer.CounterAnonymousContainers++;
257                 }
258
259                 public void AddCapturedThisField (EmitContext ec, AnonymousMethodStorey parent)
260                 {
261                         TypeExpr type_expr = new TypeExpression (ec.CurrentType, Location);
262                         Field f = AddCompilerGeneratedField ("$this", type_expr);
263                         hoisted_this = new HoistedThis (this, f);
264
265                         initialize_hoisted_this = true;
266                         hoisted_this_parent = parent;
267                 }
268
269                 public Field AddCapturedVariable (string name, TypeSpec type)
270                 {
271                         CheckMembersDefined ();
272
273                         FullNamedExpression field_type = new TypeExpression (type, Location);
274                         if (!spec.IsGenericOrParentIsGeneric)
275                                 return AddCompilerGeneratedField (name, field_type);
276
277                         const Modifiers mod = Modifiers.INTERNAL | Modifiers.COMPILER_GENERATED;
278                         Field f = new HoistedField (this, field_type, mod, name, null, Location);
279                         AddField (f);
280                         return f;
281                 }
282
283                 protected Field AddCompilerGeneratedField (string name, FullNamedExpression type)
284                 {
285                         return AddCompilerGeneratedField (name, type, false);
286                 }
287
288                 protected Field AddCompilerGeneratedField (string name, FullNamedExpression type, bool privateAccess)
289                 {
290                         Modifiers mod = Modifiers.COMPILER_GENERATED | (privateAccess ? Modifiers.PRIVATE : Modifiers.INTERNAL);
291                         Field f = new Field (this, type, mod, new MemberName (name, Location), null);
292                         AddField (f);
293                         return f;
294                 }
295
296                 //
297                 // Creates a link between hoisted variable block and the anonymous method storey
298                 //
299                 // An anonymous method can reference variables from any outer block, but they are
300                 // hoisted in their own ExplicitBlock. When more than one block is referenced we
301                 // need to create another link between those variable storeys
302                 //
303                 public void AddReferenceFromChildrenBlock (ExplicitBlock block)
304                 {
305                         if (children_references == null)
306                                 children_references = new List<ExplicitBlock> ();
307
308                         if (!children_references.Contains (block))
309                                 children_references.Add (block);
310                 }
311
312                 public void AddParentStoreyReference (EmitContext ec, AnonymousMethodStorey storey)
313                 {
314                         CheckMembersDefined ();
315
316                         if (used_parent_storeys == null)
317                                 used_parent_storeys = new List<StoreyFieldPair> ();
318                         else if (used_parent_storeys.Exists (i => i.Storey == storey))
319                                 return;
320
321                         TypeExpr type_expr = storey.CreateStoreyTypeExpression (ec);
322                         Field f = AddCompilerGeneratedField ("<>f__ref$" + storey.ID, type_expr);
323                         used_parent_storeys.Add (new StoreyFieldPair (storey, f));
324                 }
325
326                 public void CaptureLocalVariable (ResolveContext ec, LocalVariable localVariable)
327                 {
328                         if (this is StateMachine) {
329                                 if (ec.CurrentBlock.ParametersBlock != localVariable.Block.ParametersBlock)
330                                         ec.CurrentBlock.Explicit.HasCapturedVariable = true;
331                         } else {
332                                 ec.CurrentBlock.Explicit.HasCapturedVariable = true;
333                         }
334
335                         var hoisted = localVariable.HoistedVariant;
336                         if (hoisted != null && hoisted.Storey != this && hoisted.Storey is StateMachine) {
337                                 //
338                                 // Variable is already hoisted but we need it in storey which can be shared
339                                 //
340                                 hoisted.Storey.hoisted_locals.Remove (hoisted);
341                                 hoisted.Storey.Members.Remove (hoisted.Field);
342                                 hoisted = null;
343                         }
344
345                         if (hoisted == null) {
346                                 hoisted = new HoistedLocalVariable (this, localVariable, GetVariableMangledName (ec, localVariable));
347                                 localVariable.HoistedVariant = hoisted;
348
349                                 if (hoisted_locals == null)
350                                         hoisted_locals = new List<HoistedVariable> ();
351
352                                 hoisted_locals.Add (hoisted);
353                         }
354
355                         if (ec.CurrentBlock.Explicit != localVariable.Block.Explicit && !(hoisted.Storey is StateMachine) && hoisted.Storey != null)
356                                 hoisted.Storey.AddReferenceFromChildrenBlock (ec.CurrentBlock.Explicit);
357                 }
358
359                 public void CaptureParameter (ResolveContext ec, ParametersBlock.ParameterInfo parameterInfo, ParameterReference parameterReference)
360                 {
361                         if (!(this is StateMachine)) {
362                                 ec.CurrentBlock.Explicit.HasCapturedVariable = true;
363                         }
364
365                         var hoisted = parameterInfo.Parameter.HoistedVariant;
366
367                         if (parameterInfo.Block.StateMachine != null) {
368                                 //
369                                 // Another storey in same block exists but state machine does not
370                                 // have parameter captured. We need to add it there as well to
371                                 // proxy parameter value correctly.
372                                 //
373                                 if (hoisted == null && parameterInfo.Block.StateMachine != this) {
374                                         var storey = parameterInfo.Block.StateMachine;
375
376                                         hoisted = new HoistedParameter (storey, parameterReference);
377                                         parameterInfo.Parameter.HoistedVariant = hoisted;
378
379                                         if (storey.hoisted_params == null)
380                                                 storey.hoisted_params = new List<HoistedParameter> ();
381
382                                         storey.hoisted_params.Add (hoisted);
383                                 }
384
385                                 //
386                                 // Lift captured parameter from value type storey to reference type one. Otherwise
387                                 // any side effects would be done on a copy
388                                 //
389                                 if (hoisted != null && hoisted.Storey != this && hoisted.Storey is StateMachine) {
390                                         if (hoisted_local_params == null)
391                                                 hoisted_local_params = new List<HoistedParameter> ();
392
393                                         hoisted_local_params.Add (hoisted);
394                                         hoisted = null;
395                                 }
396                         }
397
398                         if (hoisted == null) {
399                                 hoisted = new HoistedParameter (this, parameterReference);
400                                 parameterInfo.Parameter.HoistedVariant = hoisted;
401
402                                 if (hoisted_params == null)
403                                         hoisted_params = new List<HoistedParameter> ();
404
405                                 hoisted_params.Add (hoisted);
406                         }
407
408                         //
409                         // Register link between current block and parameter storey. It will
410                         // be used when setting up storey definition to deploy storey reference
411                         // when parameters are used from multiple blocks
412                         //
413                         if (ec.CurrentBlock.Explicit != parameterInfo.Block) {
414                                 hoisted.Storey.AddReferenceFromChildrenBlock (ec.CurrentBlock.Explicit);
415                         }
416                 }
417
418                 TypeExpr CreateStoreyTypeExpression (EmitContext ec)
419                 {
420                         //
421                         // Create an instance of storey type
422                         //
423                         TypeExpr storey_type_expr;
424                         if (CurrentTypeParameters != null) {
425                                 //
426                                 // Use current method type parameter (MVAR) for top level storey only. All
427                                 // nested storeys use class type parameter (VAR)
428                                 //
429                                 var tparams = ec.CurrentAnonymousMethod != null && ec.CurrentAnonymousMethod.Storey != null ?
430                                         ec.CurrentAnonymousMethod.Storey.CurrentTypeParameters :
431                                         ec.CurrentTypeParameters;
432
433                                 TypeArguments targs = new TypeArguments ();
434
435                                 //
436                                 // Use type parameter name instead of resolved type parameter
437                                 // specification to resolve to correctly nested type parameters
438                                 //
439                                 for (int i = 0; i < tparams.Count; ++i)
440                                         targs.Add (new SimpleName (tparams [i].Name, Location)); //  new TypeParameterExpr (tparams[i], Location));
441
442                                 storey_type_expr = new GenericTypeExpr (Definition, targs, Location);
443                         } else {
444                                 storey_type_expr = new TypeExpression (CurrentType, Location);
445                         }
446
447                         return storey_type_expr;
448                 }
449
450                 public void SetNestedStoryParent (AnonymousMethodStorey parentStorey)
451                 {
452                         Parent = parentStorey;
453                         spec.IsGeneric = false;
454                         spec.DeclaringType = parentStorey.CurrentType;
455                         MemberName.TypeParameters = null;
456                 }
457
458                 protected override bool DoResolveTypeParameters ()
459                 {
460                         // Although any storey can have type parameters they are all clones of method type
461                         // parameters therefore have to mutate MVAR references in any of cloned constraints
462                         if (CurrentTypeParameters != null) {
463                                 for (int i = 0; i < CurrentTypeParameters.Count; ++i) {
464                                         var spec = CurrentTypeParameters[i].Type;
465                                         spec.BaseType = mutator.Mutate (spec.BaseType);
466                                         if (spec.InterfacesDefined != null) {
467                                                 var mutated = new TypeSpec[spec.InterfacesDefined.Length];
468                                                 for (int ii = 0; ii < mutated.Length; ++ii) {
469                                                         mutated[ii] = mutator.Mutate (spec.InterfacesDefined[ii]);
470                                                 }
471
472                                                 spec.InterfacesDefined = mutated;
473                                         }
474
475                                         if (spec.TypeArguments != null) {
476                                                 spec.TypeArguments = mutator.Mutate (spec.TypeArguments);
477                                         }
478                                 }
479                         }
480
481                         //
482                         // Update parent cache as we most likely passed the point
483                         // where the cache was constructed
484                         //
485                         Parent.CurrentType.MemberCache.AddMember (this.spec);
486
487                         return true;
488                 }
489
490                 //
491                 // Initializes all hoisted variables
492                 //
493                 public void EmitStoreyInstantiation (EmitContext ec, ExplicitBlock block)
494                 {
495                         // There can be only one instance variable for each storey type
496                         if (Instance != null)
497                                 throw new InternalErrorException ();
498
499                         //
500                         // Create an instance of this storey
501                         //
502                         ResolveContext rc = new ResolveContext (ec.MemberContext);
503                         rc.CurrentBlock = block;
504
505                         var storey_type_expr = CreateStoreyTypeExpression (ec);
506                         var source = new New (storey_type_expr, null, Location).Resolve (rc);
507
508                         //
509                         // When the current context is async (or iterator) lift local storey
510                         // instantiation to the currect storey
511                         //
512                         if (ec.CurrentAnonymousMethod is StateMachineInitializer && (block.HasYield || block.HasAwait)) {
513                                 //
514                                 // Unfortunately, normal capture mechanism could not be used because we are
515                                 // too late in the pipeline and standart assign cannot be used either due to
516                                 // recursive nature of GetStoreyInstanceExpression
517                                 //
518                                 var field = ec.CurrentAnonymousMethod.Storey.AddCompilerGeneratedField (
519                                         LocalVariable.GetCompilerGeneratedName (block), storey_type_expr, true);
520
521                                 field.Define ();
522                                 field.Emit ();
523
524                                 var fexpr = new FieldExpr (field, Location);
525                                 fexpr.InstanceExpression = new CompilerGeneratedThis (ec.CurrentType, Location);
526                                 fexpr.EmitAssign (ec, source, false, false);
527                                 Instance = fexpr;
528                         } else {
529                                 var local = TemporaryVariableReference.Create (source.Type, block, Location, writeToSymbolFile: true);
530                                 if (source.Type.IsStruct) {
531                                         local.LocalInfo.CreateBuilder (ec);
532                                 } else {
533                                         local.EmitAssign (ec, source);
534                                 }
535
536                                 Instance = local;
537                         }
538
539                         EmitHoistedFieldsInitialization (rc, ec);
540
541                         // TODO: Implement properly
542                         //SymbolWriter.DefineScopeVariable (ID, Instance.Builder);
543                 }
544
545                 void EmitHoistedFieldsInitialization (ResolveContext rc, EmitContext ec)
546                 {
547                         //
548                         // Initialize all storey reference fields by using local or hoisted variables
549                         //
550                         if (used_parent_storeys != null) {
551                                 foreach (StoreyFieldPair sf in used_parent_storeys) {
552                                         //
553                                         // Get instance expression of storey field
554                                         //
555                                         Expression instace_expr = GetStoreyInstanceExpression (ec);
556                                         var fs = sf.Field.Spec;
557                                         if (TypeManager.IsGenericType (instace_expr.Type))
558                                                 fs = MemberCache.GetMember (instace_expr.Type, fs);
559
560                                         FieldExpr f_set_expr = new FieldExpr (fs, Location);
561                                         f_set_expr.InstanceExpression = instace_expr;
562
563                                         // TODO: CompilerAssign expression
564                                         SimpleAssign a = new SimpleAssign (f_set_expr, sf.Storey.GetStoreyInstanceExpression (ec));
565                                         if (a.Resolve (rc) != null)
566                                                 a.EmitStatement (ec);
567                                 }
568                         }
569
570                         //
571                         // Initialize hoisted `this' only once, everywhere else will be
572                         // referenced indirectly
573                         //
574                         if (initialize_hoisted_this) {
575                                 rc.CurrentBlock.AddScopeStatement (new ThisInitializer (hoisted_this, hoisted_this_parent));
576                         }
577
578                         //
579                         // Setting currect anonymous method to null blocks any further variable hoisting
580                         //
581                         AnonymousExpression ae = ec.CurrentAnonymousMethod;
582                         ec.CurrentAnonymousMethod = null;
583
584                         if (hoisted_params != null) {
585                                 EmitHoistedParameters (ec, hoisted_params);
586                         }
587
588                         ec.CurrentAnonymousMethod = ae;
589                 }
590
591                 protected virtual void EmitHoistedParameters (EmitContext ec, List<HoistedParameter> hoisted)
592                 {
593                         foreach (HoistedParameter hp in hoisted) {
594                                 if (hp == null)
595                                         continue;
596
597                                 //
598                                 // Parameters could be proxied via local fields for value type storey
599                                 //
600                                 if (hoisted_local_params != null) {
601                                         var local_param = hoisted_local_params.Find (l => l.Parameter.Parameter == hp.Parameter.Parameter);
602                                         var source = new FieldExpr (local_param.Field, Location);
603                                         source.InstanceExpression = new CompilerGeneratedThis (CurrentType, Location);
604                                         hp.EmitAssign (ec, source, false, false);
605                                         continue;
606                                 }
607
608                                 hp.EmitHoistingAssignment (ec);
609                         }
610                 }
611
612                 //
613                 // Returns a field which holds referenced storey instance
614                 //
615                 Field GetReferencedStoreyField (AnonymousMethodStorey storey)
616                 {
617                         if (used_parent_storeys == null)
618                                 return null;
619
620                         foreach (StoreyFieldPair sf in used_parent_storeys) {
621                                 if (sf.Storey == storey)
622                                         return sf.Field;
623                         }
624
625                         return null;
626                 }
627
628                 //
629                 // Creates storey instance expression regardless of currect IP
630                 //
631                 public Expression GetStoreyInstanceExpression (EmitContext ec)
632                 {
633                         AnonymousExpression am = ec.CurrentAnonymousMethod;
634
635                         //
636                         // Access from original block -> storey
637                         //
638                         if (am == null)
639                                 return Instance;
640
641                         //
642                         // Access from anonymous method implemented as a static -> storey
643                         //
644                         if (am.Storey == null)
645                                 return Instance;
646
647                         Field f = am.Storey.GetReferencedStoreyField (this);
648                         if (f == null) {
649                                 if (am.Storey == this) {
650                                         //
651                                         // Access from inside of same storey (S -> S)
652                                         //
653                                         return new CompilerGeneratedThis (CurrentType, Location);
654                                 }
655
656                                 //
657                                 // External field access
658                                 //
659                                 return Instance;
660                         }
661
662                         //
663                         // Storey was cached to local field
664                         //
665                         FieldExpr f_ind = new FieldExpr (f, Location);
666                         f_ind.InstanceExpression = new CompilerGeneratedThis (CurrentType, Location);
667                         return f_ind;
668                 }
669
670                 protected virtual string GetVariableMangledName (ResolveContext rc, LocalVariable local_info)
671                 {
672                         //
673                         // No need to mangle anonymous method hoisted variables cause they
674                         // are hoisted in their own scopes
675                         //
676                         return local_info.Name;
677                 }
678
679                 public HoistedThis HoistedThis {
680                         get {
681                                 return hoisted_this;
682                         }
683                         set {
684                                 hoisted_this = value;
685                         }
686                 }
687
688                 public IList<ExplicitBlock> ReferencesFromChildrenBlock {
689                         get { return children_references; }
690                 }
691         }
692
693         public abstract class HoistedVariable
694         {
695                 //
696                 // Hoisted version of variable references used in expression
697                 // tree has to be delayed until we know its location. The variable
698                 // doesn't know its location until all stories are calculated
699                 //
700                 class ExpressionTreeVariableReference : Expression
701                 {
702                         readonly HoistedVariable hv;
703
704                         public ExpressionTreeVariableReference (HoistedVariable hv)
705                         {
706                                 this.hv = hv;
707                         }
708
709                         public override bool ContainsEmitWithAwait ()
710                         {
711                                 return false;
712                         }
713
714                         public override Expression CreateExpressionTree (ResolveContext ec)
715                         {
716                                 return hv.CreateExpressionTree ();
717                         }
718
719                         protected override Expression DoResolve (ResolveContext ec)
720                         {
721                                 eclass = ExprClass.Value;
722                                 type = ec.Module.PredefinedTypes.Expression.Resolve ();
723                                 return this;
724                         }
725
726                         public override void Emit (EmitContext ec)
727                         {
728                                 ResolveContext rc = new ResolveContext (ec.MemberContext);
729                                 Expression e = hv.GetFieldExpression (ec).CreateExpressionTree (rc, false);
730                                 // This should never fail
731                                 e = e.Resolve (rc);
732                                 if (e != null)
733                                         e.Emit (ec);
734                         }
735                 }
736         
737                 protected readonly AnonymousMethodStorey storey;
738                 protected Field field;
739                 Dictionary<AnonymousExpression, FieldExpr> cached_inner_access; // TODO: Hashtable is too heavyweight
740                 FieldExpr cached_outer_access;
741
742                 protected HoistedVariable (AnonymousMethodStorey storey, string name, TypeSpec type)
743                         : this (storey, storey.AddCapturedVariable (name, type))
744                 {
745                 }
746
747                 protected HoistedVariable (AnonymousMethodStorey storey, Field field)
748                 {
749                         this.storey = storey;
750                         this.field = field;
751                 }
752
753                 public Field Field {
754                         get {
755                                 return field;
756                         }
757                 }
758
759                 public AnonymousMethodStorey Storey {
760                         get {
761                                 return storey;
762                         }
763                 }
764
765                 public void AddressOf (EmitContext ec, AddressOp mode)
766                 {
767                         GetFieldExpression (ec).AddressOf (ec, mode);
768                 }
769
770                 public Expression CreateExpressionTree ()
771                 {
772                         return new ExpressionTreeVariableReference (this);
773                 }
774
775                 public void Emit (EmitContext ec)
776                 {
777                         GetFieldExpression (ec).Emit (ec);
778                 }
779
780                 public Expression EmitToField (EmitContext ec)
781                 {
782                         return GetFieldExpression (ec);
783                 }
784
785                 //
786                 // Creates field access expression for hoisted variable
787                 //
788                 protected virtual FieldExpr GetFieldExpression (EmitContext ec)
789                 {
790                         if (ec.CurrentAnonymousMethod == null || ec.CurrentAnonymousMethod.Storey == null) {
791                                 if (cached_outer_access != null)
792                                         return cached_outer_access;
793
794                                 //
795                                 // When setting top-level hoisted variable in generic storey
796                                 // change storey generic types to method generic types (VAR -> MVAR)
797                                 //
798                                 if (storey.Instance.Type.IsGenericOrParentIsGeneric) {
799                                         var fs = MemberCache.GetMember (storey.Instance.Type, field.Spec);
800                                         cached_outer_access = new FieldExpr (fs, field.Location);
801                                 } else {
802                                         cached_outer_access = new FieldExpr (field, field.Location);
803                                 }
804
805                                 cached_outer_access.InstanceExpression = storey.GetStoreyInstanceExpression (ec);
806                                 return cached_outer_access;
807                         }
808
809                         FieldExpr inner_access;
810                         if (cached_inner_access != null) {
811                                 if (!cached_inner_access.TryGetValue (ec.CurrentAnonymousMethod, out inner_access))
812                                         inner_access = null;
813                         } else {
814                                 inner_access = null;
815                                 cached_inner_access = new Dictionary<AnonymousExpression, FieldExpr> (4);
816                         }
817
818                         if (inner_access == null) {
819                                 if (field.Parent.IsGenericOrParentIsGeneric) {
820                                         var fs = MemberCache.GetMember (field.Parent.CurrentType, field.Spec);
821                                         inner_access = new FieldExpr (fs, field.Location);
822                                 } else {
823                                         inner_access = new FieldExpr (field, field.Location);
824                                 }
825
826                                 inner_access.InstanceExpression = storey.GetStoreyInstanceExpression (ec);
827                                 cached_inner_access.Add (ec.CurrentAnonymousMethod, inner_access);
828                         }
829
830                         return inner_access;
831                 }
832
833                 public void Emit (EmitContext ec, bool leave_copy)
834                 {
835                         GetFieldExpression (ec).Emit (ec, leave_copy);
836                 }
837
838                 public void EmitAssign (EmitContext ec, Expression source, bool leave_copy, bool isCompound)
839                 {
840                         GetFieldExpression (ec).EmitAssign (ec, source, leave_copy, false);
841                 }
842
843                 public void EmitAssignFromStack (EmitContext ec)
844                 {
845                         GetFieldExpression (ec).EmitAssignFromStack (ec);
846                 }
847         }
848
849         public class HoistedParameter : HoistedVariable
850         {
851                 sealed class HoistedFieldAssign : CompilerAssign
852                 {
853                         public HoistedFieldAssign (Expression target, Expression source)
854                                 : base (target, source, target.Location)
855                         {
856                         }
857
858                         protected override Expression ResolveConversions (ResolveContext ec)
859                         {
860                                 //
861                                 // Implicit conversion check fails for hoisted type arguments
862                                 // as they are of different types (!!0 x !0)
863                                 //
864                                 return this;
865                         }
866                 }
867
868                 readonly ParameterReference parameter;
869
870                 public HoistedParameter (AnonymousMethodStorey scope, ParameterReference par)
871                         : base (scope, par.Name, par.Type)
872                 {
873                         this.parameter = par;
874                 }
875
876                 public HoistedParameter (HoistedParameter hp, string name)
877                         : base (hp.storey, name, hp.parameter.Type)
878                 {
879                         this.parameter = hp.parameter;
880                 }
881
882                 #region Properties
883
884                 public bool IsAssigned { get; set; }
885
886                 public ParameterReference Parameter {
887                         get {
888                                 return parameter;
889                         }
890                 }
891
892                 #endregion
893
894                 public void EmitHoistingAssignment (EmitContext ec)
895                 {
896                         //
897                         // Remove hoisted redirection to emit assignment from original parameter
898                         //
899                         var temp = parameter.Parameter.HoistedVariant;
900                         parameter.Parameter.HoistedVariant = null;
901
902                         var a = new HoistedFieldAssign (GetFieldExpression (ec), parameter);
903                         a.EmitStatement (ec);
904
905                         parameter.Parameter.HoistedVariant = temp;
906                 }
907         }
908
909         class HoistedLocalVariable : HoistedVariable
910         {
911                 public HoistedLocalVariable (AnonymousMethodStorey storey, LocalVariable local, string name)
912                         : base (storey, name, local.Type)
913                 {
914                 }
915         }
916
917         public class HoistedThis : HoistedVariable
918         {
919                 public HoistedThis (AnonymousMethodStorey storey, Field field)
920                         : base (storey, field)
921                 {
922                 }
923         }
924
925         //
926         // Anonymous method expression as created by parser
927         //
928         public class AnonymousMethodExpression : Expression
929         {
930                 //
931                 // Special conversion for nested expression tree lambdas
932                 //
933                 class Quote : ShimExpression
934                 {
935                         public Quote (Expression expr)
936                                 : base (expr)
937                         {
938                         }
939
940                         public override Expression CreateExpressionTree (ResolveContext ec)
941                         {
942                                 var args = new Arguments (1);
943                                 args.Add (new Argument (expr.CreateExpressionTree (ec)));
944                                 return CreateExpressionFactoryCall (ec, "Quote", args);
945                         }
946
947                         protected override Expression DoResolve (ResolveContext rc)
948                         {
949                                 expr = expr.Resolve (rc);
950                                 if (expr == null)
951                                         return null;
952
953                                 eclass = expr.eclass;
954                                 type = expr.Type;
955                                 return this;
956                         }
957                 }
958
959                 readonly Dictionary<TypeSpec, Expression> compatibles;
960
961                 public ParametersBlock Block;
962
963                 public AnonymousMethodExpression (Location loc)
964                 {
965                         this.loc = loc;
966                         this.compatibles = new Dictionary<TypeSpec, Expression> ();
967                 }
968
969                 #region Properties
970
971                 public override string ExprClassName {
972                         get {
973                                 return "anonymous method";
974                         }
975                 }
976
977                 public virtual bool HasExplicitParameters {
978                         get {
979                                 return Parameters != ParametersCompiled.Undefined;
980                         }
981                 }
982
983                 public override bool IsSideEffectFree {
984                         get {
985                                 return true;
986                         }
987                 }
988
989                 public ParametersCompiled Parameters {
990                         get {
991                                 return Block.Parameters;
992                         }
993                 }
994
995                 public ReportPrinter TypeInferenceReportPrinter {
996                         get; set;
997                 }
998
999                 #endregion
1000
1001                 //
1002                 // Returns true if the body of lambda expression can be implicitly
1003                 // converted to the delegate of type `delegate_type'
1004                 //
1005                 public bool ImplicitStandardConversionExists (ResolveContext ec, TypeSpec delegate_type)
1006                 {
1007                         using (ec.With (ResolveContext.Options.InferReturnType, false)) {
1008                                 using (ec.Set (ResolveContext.Options.ProbingMode)) {
1009                                         var prev = ec.Report.SetPrinter (TypeInferenceReportPrinter ?? new NullReportPrinter ());
1010
1011                                         var res = Compatible (ec, delegate_type) != null;
1012
1013                                         ec.Report.SetPrinter (prev);
1014
1015                                         return res;
1016                                 }
1017                         }
1018                 }
1019
1020                 TypeSpec CompatibleChecks (ResolveContext ec, TypeSpec delegate_type)
1021                 {
1022                         if (delegate_type.IsDelegate)
1023                                 return delegate_type;
1024
1025                         if (delegate_type.IsExpressionTreeType) {
1026                                 delegate_type = delegate_type.TypeArguments [0];
1027                                 if (delegate_type.IsDelegate)
1028                                         return delegate_type;
1029
1030                                 ec.Report.Error (835, loc, "Cannot convert `{0}' to an expression tree of non-delegate type `{1}'",
1031                                         GetSignatureForError (), delegate_type.GetSignatureForError ());
1032                                 return null;
1033                         }
1034
1035                         ec.Report.Error (1660, loc, "Cannot convert `{0}' to non-delegate type `{1}'",
1036                                       GetSignatureForError (), delegate_type.GetSignatureForError ());
1037                         return null;
1038                 }
1039
1040                 protected bool VerifyExplicitParameters (ResolveContext ec, TypeInferenceContext tic, TypeSpec delegate_type, AParametersCollection parameters)
1041                 {
1042                         if (VerifyParameterCompatibility (ec, tic, delegate_type, parameters, ec.IsInProbingMode))
1043                                 return true;
1044
1045                         if (!ec.IsInProbingMode)
1046                                 ec.Report.Error (1661, loc,
1047                                         "Cannot convert `{0}' to delegate type `{1}' since there is a parameter mismatch",
1048                                         GetSignatureForError (), delegate_type.GetSignatureForError ());
1049
1050                         return false;
1051                 }
1052
1053                 protected bool VerifyParameterCompatibility (ResolveContext ec, TypeInferenceContext tic, TypeSpec delegate_type, AParametersCollection invoke_pd, bool ignore_errors)
1054                 {
1055                         if (Parameters.Count != invoke_pd.Count) {
1056                                 if (ignore_errors)
1057                                         return false;
1058                                 
1059                                 ec.Report.Error (1593, loc, "Delegate `{0}' does not take `{1}' arguments",
1060                                               delegate_type.GetSignatureForError (), Parameters.Count.ToString ());
1061                                 return false;
1062                         }
1063
1064                         bool has_implicit_parameters = !HasExplicitParameters;
1065                         bool error = false;
1066
1067                         for (int i = 0; i < Parameters.Count; ++i) {
1068                                 Parameter.Modifier p_mod = invoke_pd.FixedParameters [i].ModFlags;
1069                                 if (Parameters.FixedParameters [i].ModFlags != p_mod && p_mod != Parameter.Modifier.PARAMS) {
1070                                         if (ignore_errors)
1071                                                 return false;
1072                                         
1073                                         if (p_mod == Parameter.Modifier.NONE)
1074                                                 ec.Report.Error (1677, Parameters[i].Location, "Parameter `{0}' should not be declared with the `{1}' keyword",
1075                                                               (i + 1).ToString (), Parameter.GetModifierSignature (Parameters [i].ModFlags));
1076                                         else
1077                                                 ec.Report.Error (1676, Parameters[i].Location, "Parameter `{0}' must be declared with the `{1}' keyword",
1078                                                               (i+1).ToString (), Parameter.GetModifierSignature (p_mod));
1079                                         error = true;
1080                                 }
1081
1082                                 if (has_implicit_parameters)
1083                                         continue;
1084
1085                                 TypeSpec type = invoke_pd.Types [i];
1086
1087                                 if (tic != null)
1088                                         type = tic.InflateGenericArgument (ec, type);
1089                                 
1090                                 if (!TypeSpecComparer.IsEqual (type, Parameters.Types [i])) {
1091                                         if (ignore_errors)
1092                                                 return false;
1093                                         
1094                                         ec.Report.Error (1678, Parameters [i].Location, "Parameter `{0}' is declared as type `{1}' but should be `{2}'",
1095                                                       (i+1).ToString (),
1096                                                       Parameters.Types [i].GetSignatureForError (),
1097                                                       invoke_pd.Types [i].GetSignatureForError ());
1098                                         error = true;
1099                                 }
1100                         }
1101
1102                         return !error;
1103                 }
1104
1105                 //
1106                 // Infers type arguments based on explicit arguments
1107                 //
1108                 public bool ExplicitTypeInference (TypeInferenceContext type_inference, TypeSpec delegate_type)
1109                 {
1110                         if (!HasExplicitParameters)
1111                                 return false;
1112
1113                         if (!delegate_type.IsDelegate) {
1114                                 if (!delegate_type.IsExpressionTreeType)
1115                                         return false;
1116
1117                                 delegate_type = TypeManager.GetTypeArguments (delegate_type) [0];
1118                                 if (!delegate_type.IsDelegate)
1119                                         return false;
1120                         }
1121                         
1122                         AParametersCollection d_params = Delegate.GetParameters (delegate_type);
1123                         if (d_params.Count != Parameters.Count)
1124                                 return false;
1125
1126                         var ptypes = Parameters.Types;
1127                         var dtypes = d_params.Types;
1128                         for (int i = 0; i < Parameters.Count; ++i) {
1129                                 if (type_inference.ExactInference (ptypes[i], dtypes[i]) == 0) {
1130                                         //
1131                                         // Continue when 0 (quick path) does not mean inference failure. Checking for
1132                                         // same type handles cases like int -> int
1133                                         //
1134                                         if (ptypes[i] == dtypes[i])
1135                                                 continue;
1136
1137                                         return false;
1138                                 }
1139                         }
1140
1141                         return true;
1142                 }
1143
1144                 public TypeSpec InferReturnType (ResolveContext ec, TypeInferenceContext tic, TypeSpec delegate_type)
1145                 {
1146                         Expression expr;
1147                         AnonymousExpression am;
1148
1149                         if (compatibles.TryGetValue (delegate_type, out expr)) {
1150                                 am = expr as AnonymousExpression;
1151                                 return am == null ? null : am.ReturnType;
1152                         }
1153
1154                         using (ec.Set (ResolveContext.Options.ProbingMode | ResolveContext.Options.InferReturnType)) {
1155                                 ReportPrinter prev;
1156                                 if (TypeInferenceReportPrinter != null) {
1157                                         prev = ec.Report.SetPrinter (TypeInferenceReportPrinter);
1158                                 } else {
1159                                         prev = null;
1160                                 }
1161
1162                                 HashSet<LocalVariable> undeclaredVariables = null;
1163                                 var body = CompatibleMethodBody (ec, tic, null, delegate_type, ref undeclaredVariables);
1164                                 if (body != null) {
1165                                         am = body.Compatible (ec, body);
1166                                 } else {
1167                                         am = null;
1168                                 }
1169
1170                                 if (TypeInferenceReportPrinter != null) {
1171                                         ec.Report.SetPrinter (prev);
1172                                 }
1173
1174                                 if (undeclaredVariables != null) {
1175                                         body.Block.TopBlock.SetUndeclaredVariables (undeclaredVariables);
1176                                 }
1177                         }
1178
1179                         if (am == null)
1180                                 return null;
1181
1182 //                      compatibles.Add (delegate_type, am);
1183                         return am.ReturnType;
1184                 }
1185
1186                 public override bool ContainsEmitWithAwait ()
1187                 {
1188                         return false;
1189                 }
1190
1191                 //
1192                 // Returns AnonymousMethod container if this anonymous method
1193                 // expression can be implicitly converted to the delegate type `delegate_type'
1194                 //
1195                 public Expression Compatible (ResolveContext ec, TypeSpec type)
1196                 {
1197                         Expression am;
1198                         if (compatibles.TryGetValue (type, out am))
1199                                 return am;
1200
1201                         if (type == InternalType.ErrorType)
1202                                 return null;
1203
1204                         TypeSpec delegate_type = CompatibleChecks (ec, type);
1205                         if (delegate_type == null)
1206                                 return null;
1207
1208                         //
1209                         // At this point its the first time we know the return type that is 
1210                         // needed for the anonymous method.  We create the method here.
1211                         //
1212
1213                         var invoke_mb = Delegate.GetInvokeMethod (delegate_type);
1214                         TypeSpec return_type = invoke_mb.ReturnType;
1215
1216                         //
1217                         // Second: the return type of the delegate must be compatible with 
1218                         // the anonymous type.   Instead of doing a pass to examine the block
1219                         // we satisfy the rule by setting the return type on the EmitContext
1220                         // to be the delegate type return type.
1221                         //
1222                         HashSet<LocalVariable> undeclaredVariables = null;
1223                         var body = CompatibleMethodBody (ec, null, return_type, delegate_type, ref undeclaredVariables);
1224                         if (body == null)
1225                                 return null;
1226
1227                         bool etree_conversion = delegate_type != type;
1228
1229                         try {
1230                                 if (etree_conversion) {
1231                                         if (ec.HasSet (ResolveContext.Options.ExpressionTreeConversion)) {
1232                                                 //
1233                                                 // Nested expression tree lambda use same scope as parent
1234                                                 // lambda, this also means no variable capturing between this
1235                                                 // and parent scope
1236                                                 //
1237                                                 am = body.Compatible (ec, ec.CurrentAnonymousMethod);
1238
1239                                                 //
1240                                                 // Quote nested expression tree
1241                                                 //
1242                                                 if (am != null)
1243                                                         am = new Quote (am);
1244                                         } else {
1245                                                 int errors = ec.Report.Errors;
1246
1247                                                 if (Block.IsAsync) {
1248                                                         ec.Report.Error (1989, loc, "Async lambda expressions cannot be converted to expression trees");
1249                                                 }
1250
1251                                                 using (ec.Set (ResolveContext.Options.ExpressionTreeConversion)) {
1252                                                         am = body.Compatible (ec);
1253                                                 }
1254
1255                                                 //
1256                                                 // Rewrite expressions into expression tree when targeting Expression<T>
1257                                                 //
1258                                                 if (am != null && errors == ec.Report.Errors)
1259                                                         am = CreateExpressionTree (ec, delegate_type);
1260                                         }
1261                                 } else {
1262                                         am = body.Compatible (ec);
1263
1264                                         if (body.DirectMethodGroupConversion != null) {
1265                                                 var errors_printer = new SessionReportPrinter ();
1266                                                 var old = ec.Report.SetPrinter (errors_printer);
1267                                                 var expr = new ImplicitDelegateCreation (delegate_type, body.DirectMethodGroupConversion, loc) {
1268                                                         AllowSpecialMethodsInvocation = true
1269                                                 }.Resolve (ec);
1270                                                 ec.Report.SetPrinter (old);
1271                                                 if (expr != null && errors_printer.ErrorsCount == 0)
1272                                                         am = expr;
1273                                         }
1274                                 }
1275                         } catch (CompletionResult) {
1276                                 throw;
1277                         } catch (FatalException) {
1278                                 throw;
1279                         } catch (Exception e) {
1280                                 throw new InternalErrorException (e, loc);
1281                         } finally {
1282                                 //
1283                                 // LocalVariable is not stateless and it's not easy to clone because it's
1284                                 // cached in toplevel block. Unsetting any initialized variables should
1285                                 // be enough
1286                                 //
1287                                 if (undeclaredVariables != null) {
1288                                         body.Block.TopBlock.SetUndeclaredVariables (undeclaredVariables);
1289                                 }
1290                         }
1291
1292                         if (!ec.IsInProbingMode && !etree_conversion) {
1293                                 compatibles.Add (type, am ?? EmptyExpression.Null);
1294                         }
1295
1296                         return am;
1297                 }
1298
1299                 protected virtual Expression CreateExpressionTree (ResolveContext ec, TypeSpec delegate_type)
1300                 {
1301                         return CreateExpressionTree (ec);
1302                 }
1303
1304                 public override Expression CreateExpressionTree (ResolveContext ec)
1305                 {
1306                         ec.Report.Error (1946, loc, "An anonymous method cannot be converted to an expression tree");
1307                         return null;
1308                 }
1309
1310                 protected virtual ParametersCompiled ResolveParameters (ResolveContext ec, TypeInferenceContext tic, TypeSpec delegate_type)
1311                 {
1312                         var delegate_parameters = Delegate.GetParameters (delegate_type);
1313
1314                         if (Parameters == ParametersCompiled.Undefined) {
1315                                 //
1316                                 // We provide a set of inaccessible parameters
1317                                 //
1318                                 Parameter[] fixedpars = new Parameter[delegate_parameters.Count];
1319
1320                                 for (int i = 0; i < delegate_parameters.Count; i++) {
1321                                         Parameter.Modifier i_mod = delegate_parameters.FixedParameters [i].ModFlags;
1322                                         if ((i_mod & Parameter.Modifier.OUT) != 0) {
1323                                                 if (!ec.IsInProbingMode) {
1324                                                         ec.Report.Error (1688, loc,
1325                                                                 "Cannot convert anonymous method block without a parameter list to delegate type `{0}' because it has one or more `out' parameters",
1326                                                                 delegate_type.GetSignatureForError ());
1327                                                 }
1328
1329                                                 return null;
1330                                         }
1331                                         fixedpars[i] = new Parameter (
1332                                                 new TypeExpression (delegate_parameters.Types [i], loc), null,
1333                                                 delegate_parameters.FixedParameters [i].ModFlags, null, loc);
1334                                 }
1335
1336                                 return ParametersCompiled.CreateFullyResolved (fixedpars, delegate_parameters.Types);
1337                         }
1338
1339                         if (!VerifyExplicitParameters (ec, tic, delegate_type, delegate_parameters)) {
1340                                 return null;
1341                         }
1342
1343                         return Parameters;
1344                 }
1345
1346                 protected override Expression DoResolve (ResolveContext rc)
1347                 {
1348                         if (rc.HasSet (ResolveContext.Options.ConstantScope)) {
1349                                 rc.Report.Error (1706, loc, "Anonymous methods and lambda expressions cannot be used in the current context");
1350                                 return null;
1351                         }
1352
1353                         //
1354                         // Update top-level block generated duting parsing with actual top-level block
1355                         //
1356                         if (rc.HasAny (ResolveContext.Options.FieldInitializerScope | ResolveContext.Options.BaseInitializer) && rc.CurrentMemberDefinition.Parent.PartialContainer.PrimaryConstructorParameters != null) {
1357                                 var tb = rc.ConstructorBlock.ParametersBlock.TopBlock;
1358                                 if (Block.TopBlock != tb) {
1359                                         Block b = Block;
1360                                         while (b.Parent != Block.TopBlock && b != Block.TopBlock)
1361                                                 b = b.Parent;
1362
1363                                         b.Parent = tb;
1364                                         tb.IncludeBlock (Block, Block.TopBlock);
1365                                         b.ParametersBlock.TopBlock = tb;
1366                                 }
1367                         }
1368
1369                         eclass = ExprClass.Value;
1370
1371                         //
1372                         // This hack means `The type is not accessible
1373                         // anywhere', we depend on special conversion
1374                         // rules.
1375                         // 
1376                         type = InternalType.AnonymousMethod;
1377
1378                         if (!DoResolveParameters (rc))
1379                                 return null;
1380
1381                         return this;
1382                 }
1383
1384                 protected virtual bool DoResolveParameters (ResolveContext rc)
1385                 {
1386                         return Parameters.Resolve (rc);
1387                 }
1388
1389                 public override void Emit (EmitContext ec)
1390                 {
1391                         // nothing, as we only exist to not do anything.
1392                 }
1393
1394                 public static void Error_AddressOfCapturedVar (ResolveContext rc, IVariableReference var, Location loc)
1395                 {
1396                         if (rc.CurrentAnonymousMethod is AsyncInitializer)
1397                                 return;
1398
1399                         rc.Report.Error (1686, loc,
1400                                 "Local variable or parameter `{0}' cannot have their address taken and be used inside an anonymous method, lambda expression or query expression",
1401                                 var.Name);
1402                 }
1403
1404                 public override string GetSignatureForError ()
1405                 {
1406                         return ExprClassName;
1407                 }
1408
1409                 AnonymousMethodBody CompatibleMethodBody (ResolveContext ec, TypeInferenceContext tic, TypeSpec return_type, TypeSpec delegate_type, ref HashSet<LocalVariable> undeclaredVariables)
1410                 {
1411                         ParametersCompiled p = ResolveParameters (ec, tic, delegate_type);
1412                         if (p == null)
1413                                 return null;
1414
1415                         ParametersBlock b = ec.IsInProbingMode ? (ParametersBlock) Block.PerformClone (ref undeclaredVariables) : Block;
1416
1417                         if (b.IsAsync) {
1418                                 var rt = return_type;
1419                                 if (rt != null && rt.Kind != MemberKind.Void && rt != ec.Module.PredefinedTypes.Task.TypeSpec && !rt.IsGenericTask) {
1420                                         ec.Report.Error (4010, loc, "Cannot convert async {0} to delegate type `{1}'",
1421                                                 GetSignatureForError (), delegate_type.GetSignatureForError ());
1422
1423                                         return null;
1424                                 }
1425
1426                                 b = b.ConvertToAsyncTask (ec, ec.CurrentMemberDefinition.Parent.PartialContainer, p, return_type, delegate_type, loc);
1427                         }
1428
1429                         return CompatibleMethodFactory (return_type ?? InternalType.ErrorType, delegate_type, p, b);
1430                 }
1431
1432                 protected virtual AnonymousMethodBody CompatibleMethodFactory (TypeSpec return_type, TypeSpec delegate_type, ParametersCompiled p, ParametersBlock b)
1433                 {
1434                         return new AnonymousMethodBody (p, b, return_type, delegate_type, loc);
1435                 }
1436
1437                 protected override void CloneTo (CloneContext clonectx, Expression t)
1438                 {
1439                         AnonymousMethodExpression target = (AnonymousMethodExpression) t;
1440
1441                         target.Block = (ParametersBlock) clonectx.LookupBlock (Block);
1442                 }
1443                 
1444                 public override object Accept (StructuralVisitor visitor)
1445                 {
1446                         return visitor.Visit (this);
1447                 }
1448         }
1449
1450         //
1451         // Abstract expression for any block which requires variables hoisting
1452         //
1453         public abstract class AnonymousExpression : ExpressionStatement
1454         {
1455                 protected class AnonymousMethodMethod : Method
1456                 {
1457                         public readonly AnonymousExpression AnonymousMethod;
1458                         public readonly AnonymousMethodStorey Storey;
1459
1460                         public AnonymousMethodMethod (TypeDefinition parent, AnonymousExpression am, AnonymousMethodStorey storey,
1461                                                           TypeExpr return_type,
1462                                                           Modifiers mod, MemberName name,
1463                                                           ParametersCompiled parameters)
1464                                 : base (parent, return_type, mod | Modifiers.COMPILER_GENERATED,
1465                                                 name, parameters, null)
1466                         {
1467                                 this.AnonymousMethod = am;
1468                                 this.Storey = storey;
1469
1470                                 Parent.PartialContainer.Members.Add (this);
1471                                 Block = new ToplevelBlock (am.block, parameters);
1472                         }
1473
1474                         public override EmitContext CreateEmitContext (ILGenerator ig, SourceMethodBuilder sourceMethod)
1475                         {
1476                                 EmitContext ec = new EmitContext (this, ig, ReturnType, sourceMethod);
1477                                 ec.CurrentAnonymousMethod = AnonymousMethod;
1478                                 return ec;
1479                         }
1480
1481                         protected override void DefineTypeParameters ()
1482                         {
1483                                 // Type parameters were cloned
1484                         }
1485
1486                         protected override bool ResolveMemberType ()
1487                         {
1488                                 if (!base.ResolveMemberType ())
1489                                         return false;
1490
1491                                 if (Storey != null && Storey.Mutator != null) {
1492                                         if (!parameters.IsEmpty) {
1493                                                 var mutated = Storey.Mutator.Mutate (parameters.Types);
1494                                                 if (mutated != parameters.Types)
1495                                                         parameters = ParametersCompiled.CreateFullyResolved ((Parameter[]) parameters.FixedParameters, mutated);
1496                                         }
1497
1498                                         member_type = Storey.Mutator.Mutate (member_type);
1499                                 }
1500
1501                                 return true;
1502                         }
1503
1504                         public override void Emit ()
1505                         {
1506                                 if (MethodBuilder == null) {
1507                                         Define ();
1508                                 }
1509
1510                                 base.Emit ();
1511                         }
1512                 }
1513
1514                 protected readonly ParametersBlock block;
1515
1516                 public TypeSpec ReturnType;
1517
1518                 protected AnonymousExpression (ParametersBlock block, TypeSpec return_type, Location loc)
1519                 {
1520                         this.ReturnType = return_type;
1521                         this.block = block;
1522                         this.loc = loc;
1523                 }
1524
1525                 public abstract string ContainerType { get; }
1526                 public abstract bool IsIterator { get; }
1527                 public abstract AnonymousMethodStorey Storey { get; }
1528
1529                 //
1530                 // The block that makes up the body for the anonymous method
1531                 //
1532                 public ParametersBlock Block {
1533                         get {
1534                                 return block;
1535                         }
1536                 }
1537
1538                 public AnonymousExpression Compatible (ResolveContext ec)
1539                 {
1540                         return Compatible (ec, this);
1541                 }
1542
1543                 public AnonymousExpression Compatible (ResolveContext ec, AnonymousExpression ae)
1544                 {
1545                         if (block.Resolved)
1546                                 return this;
1547
1548                         // TODO: Implement clone
1549                         BlockContext aec = new BlockContext (ec, block, ReturnType);
1550                         aec.CurrentAnonymousMethod = ae;
1551
1552                         var am = this as AnonymousMethodBody;
1553
1554                         if (ec.HasSet (ResolveContext.Options.InferReturnType) && am != null) {
1555                                 am.ReturnTypeInference = new TypeInferenceContext ();
1556                         }
1557
1558                         var bc = ec as BlockContext;
1559
1560                         if (bc != null) {
1561                                 aec.AssignmentInfoOffset = bc.AssignmentInfoOffset;
1562                                 aec.EnclosingLoop = bc.EnclosingLoop;
1563                                 aec.EnclosingLoopOrSwitch = bc.EnclosingLoopOrSwitch;
1564                                 aec.Switch = bc.Switch;
1565                         }
1566
1567                         var errors = ec.Report.Errors;
1568
1569                         bool res = Block.Resolve (aec);
1570
1571                         if (res && errors == ec.Report.Errors) {
1572                                 MarkReachable (new Reachability ());
1573
1574                                 if (!CheckReachableExit (ec.Report)) {
1575                                         return null;
1576                                 }
1577
1578                                 if (bc != null)
1579                                         bc.AssignmentInfoOffset = aec.AssignmentInfoOffset;
1580                         }
1581
1582                         if (am != null && am.ReturnTypeInference != null) {
1583                                 am.ReturnTypeInference.FixAllTypes (ec);
1584                                 ReturnType = am.ReturnTypeInference.InferredTypeArguments [0];
1585                                 am.ReturnTypeInference = null;
1586
1587                                 //
1588                                 // If e is synchronous the inferred return type is T
1589                                 // If e is asynchronous and the body of F is either an expression classified as nothing
1590                                 // or a statement block where no return statements have expressions, the inferred return type is Task
1591                                 // If e is async and has an inferred result type T, the inferred return type is Task<T>
1592                                 //
1593                                 if (block.IsAsync && ReturnType != null) {
1594                                         ReturnType = ReturnType.Kind == MemberKind.Void ?
1595                                                 ec.Module.PredefinedTypes.Task.TypeSpec :
1596                                                 ec.Module.PredefinedTypes.TaskGeneric.TypeSpec.MakeGenericType (ec, new [] { ReturnType });
1597                                 }
1598                         }
1599
1600                         if (res && errors != ec.Report.Errors)
1601                                 return null;
1602
1603                         if (block.IsAsync && block.Original.ParametersBlock.HasCapturedThis && ec.CurrentAnonymousMethod != null && ec.CurrentAnonymousMethod.block.IsAsync) {
1604                                 //
1605                                 // We'll do ldftn to load the fabricated m_X method but
1606                                 // because we are inside struct the method can be hoisted
1607                                 // anywhere in the parent scope
1608                                 //
1609                                 ec.CurrentBlock.ParametersBlock.HasReferenceToStoreyForInstanceLambdas = true;
1610                         }
1611
1612                         return res ? this : null;
1613                 }
1614
1615                 public override bool ContainsEmitWithAwait ()
1616                 {
1617                         return false;
1618                 }
1619
1620                 bool CheckReachableExit (Report report)
1621                 {
1622                         if (block.HasReachableClosingBrace && ReturnType.Kind != MemberKind.Void) {
1623                                 // FIXME: Flow-analysis on MoveNext generated code
1624                                 if (!IsIterator) {
1625                                         report.Error (1643, StartLocation,
1626                                                         "Not all code paths return a value in anonymous method of type `{0}'", GetSignatureForError ());
1627
1628                                         return false;
1629                                 }
1630                         }
1631
1632                         return true;
1633                 }
1634
1635                 public override void FlowAnalysis (FlowAnalysisContext fc)
1636                 {
1637                         // We are reachable, mark block body reachable too
1638                         MarkReachable (new Reachability ());
1639
1640                         CheckReachableExit (fc.Report);
1641
1642                         var das = fc.BranchDefiniteAssignment ();
1643                         var prev_pb = fc.ParametersBlock;
1644                         fc.ParametersBlock = Block;
1645                         var da_ontrue = fc.DefiniteAssignmentOnTrue;
1646                         var da_onfalse = fc.DefiniteAssignmentOnFalse;
1647                         var prev_tf = fc.TryFinally;
1648
1649                         fc.DefiniteAssignmentOnTrue = fc.DefiniteAssignmentOnFalse = null;
1650                         fc.TryFinally = null;
1651                         block.FlowAnalysis (fc);
1652
1653                         fc.ParametersBlock = prev_pb;
1654                         fc.DefiniteAssignment = das;
1655                         fc.DefiniteAssignmentOnTrue = da_ontrue;
1656                         fc.DefiniteAssignmentOnFalse = da_onfalse;
1657                         fc.TryFinally = prev_tf;
1658                 }
1659
1660                 public override Reachability MarkReachable (Reachability rc)
1661                 {
1662                         block.MarkReachable (rc);
1663                         return rc;
1664                 }
1665
1666                 public void SetHasThisAccess ()
1667                 {
1668                         ExplicitBlock b = block;
1669                         do {
1670                                 if (b.HasCapturedThis)
1671                                         return;
1672
1673                                 b.HasCapturedThis = true;
1674                                 b = b.Parent == null ? null : b.Parent.Explicit;
1675                         } while (b != null);
1676                 }
1677         }
1678
1679         public class AnonymousMethodBody : AnonymousExpression
1680         {
1681                 protected readonly ParametersCompiled parameters;
1682                 AnonymousMethodStorey storey;
1683
1684                 AnonymousMethodMethod method;
1685                 Field am_cache;
1686                 string block_name;
1687                 TypeInferenceContext return_inference;
1688
1689                 public AnonymousMethodBody (ParametersCompiled parameters,
1690                                         ParametersBlock block, TypeSpec return_type, TypeSpec delegate_type,
1691                                         Location loc)
1692                         : base (block, return_type, loc)
1693                 {
1694                         this.type = delegate_type;
1695                         this.parameters = parameters;
1696                 }
1697
1698                 #region Properties
1699
1700                 public override string ContainerType {
1701                         get { return "anonymous method"; }
1702                 }
1703
1704                 //
1705                 // Method-group instance for lambdas which can be replaced with
1706                 // simple method group call
1707                 //
1708                 public MethodGroupExpr DirectMethodGroupConversion {
1709                         get; set;
1710                 }
1711
1712                 public override bool IsIterator {
1713                         get {
1714                                 return false;
1715                         }
1716                 }
1717
1718                 public ParametersCompiled Parameters {
1719                         get {
1720                                 return parameters;
1721                         }
1722                 }
1723
1724                 public TypeInferenceContext ReturnTypeInference {
1725                         get {
1726                                 return return_inference;
1727                         }
1728                         set {
1729                                 return_inference = value;
1730                         }
1731                 }
1732
1733                 public override AnonymousMethodStorey Storey {
1734                         get {
1735                                 return storey;
1736                         }
1737                 }
1738
1739                 #endregion
1740
1741                 public override Expression CreateExpressionTree (ResolveContext ec)
1742                 {
1743                         ec.Report.Error (1945, loc, "An expression tree cannot contain an anonymous method expression");
1744                         return null;
1745                 }
1746
1747                 bool Define (ResolveContext ec)
1748                 {
1749                         if (!Block.Resolved && Compatible (ec) == null)
1750                                 return false;
1751
1752                         if (block_name == null) {
1753                                 MemberCore mc = (MemberCore) ec.MemberContext;
1754                                 block_name = mc.MemberName.Basename;
1755                         }
1756
1757                         return true;
1758                 }
1759
1760                 //
1761                 // Creates a host for the anonymous method
1762                 //
1763                 AnonymousMethodMethod DoCreateMethodHost (EmitContext ec)
1764                 {
1765                         //
1766                         // Anonymous method body can be converted to
1767                         //
1768                         // 1, an instance method in current scope when only `this' is hoisted
1769                         // 2, a static method in current scope when neither `this' nor any variable is hoisted
1770                         // 3, an instance method in compiler generated storey when any hoisted variable exists
1771                         //
1772
1773                         Modifiers modifiers;
1774                         TypeDefinition parent = null;
1775                         TypeParameters hoisted_tparams = null;
1776                         ParametersCompiled method_parameters = parameters;
1777
1778                         var src_block = Block.Original.Explicit;
1779                         if (src_block.HasCapturedVariable || src_block.HasCapturedThis) {
1780                                 parent = storey = FindBestMethodStorey ();
1781
1782                                 if (storey == null) {
1783                                         var top_block = src_block.ParametersBlock.TopBlock;
1784                                         var sm = top_block.StateMachine;
1785
1786                                         if (src_block.HasCapturedThis) {
1787                                                 //
1788                                                 // Remove hoisted 'this' request when simple instance method is
1789                                                 // enough. No hoisted variables only 'this' and don't need to
1790                                                 // propagate this to value type state machine.
1791                                                 //
1792                                                 StateMachine sm_parent;
1793                                                 var pb = src_block.ParametersBlock;
1794                                                 do {
1795                                                         sm_parent = pb.StateMachine;
1796                                                         pb = pb.Parent == null ? null : pb.Parent.ParametersBlock;
1797                                                 } while (sm_parent == null && pb != null);
1798
1799                                                 if (sm_parent == null) {
1800                                                         top_block.RemoveThisReferenceFromChildrenBlock (src_block);
1801                                                 } else if (sm_parent.Kind == MemberKind.Struct) {
1802                                                         //
1803                                                         // Special case where parent class is used to emit instance method
1804                                                         // because currect storey is of value type (async host) and we cannot
1805                                                         // use ldftn on non-boxed instances either to share mutated state
1806                                                         //
1807                                                         parent = sm_parent.Parent.PartialContainer;
1808                                                         hoisted_tparams = sm_parent.OriginalTypeParameters;
1809                                                 } else if (sm is IteratorStorey) {
1810                                                         //
1811                                                         // For iterators we can host everything in one class
1812                                                         //
1813                                                         parent = storey = sm;
1814                                                 }
1815                                         }
1816                                 } else if (src_block.ParametersBlock.HasReferenceToStoreyForInstanceLambdas) {
1817                                         src_block.ParametersBlock.StateMachine.AddParentStoreyReference (ec, storey);
1818                                 }
1819
1820                                 modifiers = storey != null ? Modifiers.INTERNAL : Modifiers.PRIVATE;
1821                         } else {
1822                                 if (ec.CurrentAnonymousMethod != null)
1823                                         parent = storey = ec.CurrentAnonymousMethod.Storey;
1824
1825                                 modifiers = Modifiers.STATIC | Modifiers.PRIVATE;
1826
1827                                 //
1828                                 // Convert generated method to closed delegate method where unused
1829                                 // this argument is generated during compilation which speeds up dispatch
1830                                 // by about 25%
1831                                 //
1832                                 // Unused as it breaks compatibility
1833                                 //
1834                                 // method_parameters = ParametersCompiled.Prefix (method_parameters,
1835                                 //      new Parameter (null, null, 0, null, loc), ec.Module.Compiler.BuiltinTypes.Object);
1836                         }
1837
1838                         if (storey == null && hoisted_tparams == null)
1839                                 hoisted_tparams = ec.CurrentTypeParameters;
1840
1841                         if (parent == null)
1842                                 parent = ec.CurrentTypeDefinition.Parent.PartialContainer;
1843
1844                         string name = CompilerGeneratedContainer.MakeName (parent != storey ? block_name : null,
1845                                 "m", null, parent.PartialContainer.CounterAnonymousMethods++);
1846
1847                         MemberName member_name;
1848                         if (hoisted_tparams != null) {
1849                                 var type_params = new TypeParameters (hoisted_tparams.Count);
1850                                 for (int i = 0; i < hoisted_tparams.Count; ++i) {
1851                                     type_params.Add (hoisted_tparams[i].CreateHoistedCopy (null));
1852                                 }
1853
1854                                 member_name = new MemberName (name, type_params, Location);
1855                         } else {
1856                                 member_name = new MemberName (name, Location);
1857                         }
1858
1859                         return new AnonymousMethodMethod (parent,
1860                                 this, storey, new TypeExpression (ReturnType, Location), modifiers,
1861                                 member_name, method_parameters);
1862                 }
1863
1864                 protected override Expression DoResolve (ResolveContext ec)
1865                 {
1866                         if (!Define (ec))
1867                                 return null;
1868
1869                         eclass = ExprClass.Value;
1870                         return this;
1871                 }
1872
1873                 public override void Emit (EmitContext ec)
1874                 {
1875                         //
1876                         // Use same anonymous method implementation for scenarios where same
1877                         // code is used from multiple blocks, e.g. field initializers
1878                         //
1879                         if (method == null) {
1880                                 //
1881                                 // Delay an anonymous method definition to avoid emitting unused code
1882                                 // for unreachable blocks or expression trees
1883                                 //
1884                                 method = DoCreateMethodHost (ec);
1885                                 method.Define ();
1886                                 method.PrepareEmit ();
1887                         }
1888
1889                         bool is_static = (method.ModFlags & Modifiers.STATIC) != 0;
1890                         if (is_static && am_cache == null && !ec.IsStaticConstructor) {
1891                                 //
1892                                 // Creates a field cache to store delegate instance if it's not generic
1893                                 //
1894                                 if (!method.MemberName.IsGeneric) {
1895                                         var parent = method.Parent.PartialContainer;
1896                                         int id = parent.AnonymousMethodsCounter++;
1897                                         var cache_type = storey != null && storey.Mutator != null ? storey.Mutator.Mutate (type) : type;
1898
1899                                         am_cache = new Field (parent, new TypeExpression (cache_type, loc),
1900                                                 Modifiers.STATIC | Modifiers.PRIVATE | Modifiers.COMPILER_GENERATED,
1901                                                 new MemberName (CompilerGeneratedContainer.MakeName (null, "f", "am$cache", id), loc), null);
1902                                         am_cache.Define ();
1903                                         parent.AddField (am_cache);
1904                                 } else {
1905                                         // TODO: Implement caching of generated generic static methods
1906                                         //
1907                                         // Idea:
1908                                         //
1909                                         // Some extra class is needed to capture variable generic type
1910                                         // arguments. Maybe we could re-use anonymous types, with a unique
1911                                         // anonymous method id, but they are quite heavy.
1912                                         //
1913                                         // Consider : "() => typeof(T);"
1914                                         //
1915                                         // We need something like
1916                                         // static class Wrap<Tn, Tm, DelegateType> {
1917                                         //              public static DelegateType cache;
1918                                         // }
1919                                         //
1920                                         // We then specialize local variable to capture all generic parameters
1921                                         // and delegate type, e.g. "Wrap<Ta, Tb, DelegateTypeInst> cache;"
1922                                         //
1923                                 }
1924                         }
1925
1926                         Label l_initialized = ec.DefineLabel ();
1927
1928                         if (am_cache != null) {
1929                                 ec.Emit (OpCodes.Ldsfld, am_cache.Spec);
1930                                 ec.Emit (OpCodes.Brtrue_S, l_initialized);
1931                         }
1932
1933                         //
1934                         // Load method delegate implementation
1935                         //
1936
1937                         if (is_static) {
1938                                 ec.EmitNull ();
1939                         } else if (storey != null) {
1940                                 Expression e = storey.GetStoreyInstanceExpression (ec).Resolve (new ResolveContext (ec.MemberContext));
1941                                 if (e != null) {
1942                                         e.Emit (ec);
1943                                 }
1944                         } else {
1945                                 ec.EmitThis ();
1946
1947                                 //
1948                                 // Special case for value type storey where this is not lifted but
1949                                 // droped off to parent class
1950                                 //
1951                                 if (ec.CurrentAnonymousMethod != null && ec.AsyncTaskStorey != null)
1952                                         ec.Emit (OpCodes.Ldfld, ec.AsyncTaskStorey.HoistedThis.Field.Spec);
1953                         }
1954
1955                         var delegate_method = method.Spec;
1956                         if (storey != null && storey.MemberName.IsGeneric) {
1957                                 //
1958                                 // Mutate anonymous method instance type if we are in nested
1959                                 // hoisted generic anonymous method storey
1960                                 //
1961                                 if (ec.IsAnonymousStoreyMutateRequired) {
1962                                         ec.Emit (OpCodes.Ldftn, delegate_method);
1963                                 } else {
1964                                         TypeSpec t = storey.Instance.Type;
1965                                         ec.Emit (OpCodes.Ldftn, TypeBuilder.GetMethod (t.GetMetaInfo (), (MethodInfo) delegate_method.GetMetaInfo ()));
1966                                 }
1967                         } else {
1968                                 if (delegate_method.IsGeneric) {
1969                                         TypeParameterSpec[] tparams;
1970                                         var sm = ec.CurrentAnonymousMethod == null ? null : ec.CurrentAnonymousMethod.Storey as StateMachine;
1971                                         if (sm != null && sm.OriginalTypeParameters != null) {
1972                                                 tparams = sm.CurrentTypeParameters.Types;
1973                                         } else {
1974                                                 tparams = method.TypeParameters;
1975                                         }
1976
1977                                         delegate_method = delegate_method.MakeGenericMethod (ec.MemberContext, tparams);
1978                                 }
1979
1980                                 ec.Emit (OpCodes.Ldftn, delegate_method);
1981                         }
1982
1983                         var constructor_method = Delegate.GetConstructor (type);
1984                         ec.Emit (OpCodes.Newobj, constructor_method);
1985
1986                         if (am_cache != null) {
1987                                 ec.Emit (OpCodes.Stsfld, am_cache.Spec);
1988                                 ec.MarkLabel (l_initialized);
1989                                 ec.Emit (OpCodes.Ldsfld, am_cache.Spec);
1990                         }
1991                 }
1992
1993                 public override void EmitStatement (EmitContext ec)
1994                 {
1995                         throw new NotImplementedException ();
1996                 }
1997
1998                 //
1999                 // Look for the best storey for this anonymous method
2000                 //
2001                 AnonymousMethodStorey FindBestMethodStorey ()
2002                 {
2003                         //
2004                         // Use the nearest parent block which has a storey
2005                         //
2006                         for (Block b = Block.Parent; b != null; b = b.Parent) {
2007                                 AnonymousMethodStorey s = b.Explicit.AnonymousMethodStorey;
2008                                 if (s != null)
2009                                         return s;
2010                         }
2011                                         
2012                         return null;
2013                 }
2014
2015                 public override string GetSignatureForError ()
2016                 {
2017                         return type.GetSignatureForError ();
2018                 }
2019         }
2020
2021         //
2022         // Anonymous type container
2023         //
2024         public class AnonymousTypeClass : CompilerGeneratedContainer
2025         {
2026                 public const string ClassNamePrefix = "<>__AnonType";
2027                 public const string SignatureForError = "anonymous type";
2028                 
2029                 readonly IList<AnonymousTypeParameter> parameters;
2030
2031                 private AnonymousTypeClass (ModuleContainer parent, MemberName name, IList<AnonymousTypeParameter> parameters, Location loc)
2032                         : base (parent, name, parent.Evaluator != null ? Modifiers.PUBLIC : Modifiers.INTERNAL)
2033                 {
2034                         this.parameters = parameters;
2035                 }
2036
2037                 public static AnonymousTypeClass Create (TypeContainer parent, IList<AnonymousTypeParameter> parameters, Location loc)
2038                 {
2039                         string name = ClassNamePrefix + parent.Module.CounterAnonymousTypes++;
2040
2041                         ParametersCompiled all_parameters;
2042                         TypeParameters tparams = null;
2043                         SimpleName[] t_args;
2044
2045                         if (parameters.Count == 0) {
2046                                 all_parameters = ParametersCompiled.EmptyReadOnlyParameters;
2047                                 t_args = null;
2048                         } else {
2049                                 t_args = new SimpleName[parameters.Count];
2050                                 tparams = new TypeParameters ();
2051                                 Parameter[] ctor_params = new Parameter[parameters.Count];
2052                                 for (int i = 0; i < parameters.Count; ++i) {
2053                                         AnonymousTypeParameter p = parameters[i];
2054                                         for (int ii = 0; ii < i; ++ii) {
2055                                                 if (parameters[ii].Name == p.Name) {
2056                                                         parent.Compiler.Report.Error (833, parameters[ii].Location,
2057                                                                 "`{0}': An anonymous type cannot have multiple properties with the same name",
2058                                                                         p.Name);
2059
2060                                                         p = new AnonymousTypeParameter (null, "$" + i.ToString (), p.Location);
2061                                                         parameters[i] = p;
2062                                                         break;
2063                                                 }
2064                                         }
2065
2066                                         t_args[i] = new SimpleName ("<" + p.Name + ">__T", p.Location);
2067                                         tparams.Add (new TypeParameter (i, new MemberName (t_args[i].Name, p.Location), null, null, Variance.None));
2068                                         ctor_params[i] = new Parameter (t_args[i], p.Name, Parameter.Modifier.NONE, null, p.Location);
2069                                 }
2070
2071                                 all_parameters = new ParametersCompiled (ctor_params);
2072                         }
2073
2074                         //
2075                         // Create generic anonymous type host with generic arguments
2076                         // named upon properties names
2077                         //
2078                         AnonymousTypeClass a_type = new AnonymousTypeClass (parent.Module, new MemberName (name, tparams, loc), parameters, loc);
2079
2080                         Constructor c = new Constructor (a_type, name, Modifiers.PUBLIC | Modifiers.DEBUGGER_HIDDEN,
2081                                 null, all_parameters, loc);
2082                         c.Block = new ToplevelBlock (parent.Module.Compiler, c.ParameterInfo, loc);
2083
2084                         // 
2085                         // Create fields and constructor body with field initialization
2086                         //
2087                         bool error = false;
2088                         for (int i = 0; i < parameters.Count; ++i) {
2089                                 AnonymousTypeParameter p = parameters [i];
2090
2091                                 Field f = new Field (a_type, t_args [i], Modifiers.PRIVATE | Modifiers.READONLY | Modifiers.DEBUGGER_HIDDEN,
2092                                         new MemberName ("<" + p.Name + ">", p.Location), null);
2093
2094                                 if (!a_type.AddField (f)) {
2095                                         error = true;
2096                                         continue;
2097                                 }
2098
2099                                 c.Block.AddStatement (new StatementExpression (
2100                                         new SimpleAssign (new MemberAccess (new This (p.Location), f.Name),
2101                                                 c.Block.GetParameterReference (i, p.Location))));
2102
2103                                 ToplevelBlock get_block = new ToplevelBlock (parent.Module.Compiler, p.Location);
2104                                 get_block.AddStatement (new Return (
2105                                         new MemberAccess (new This (p.Location), f.Name), p.Location));
2106
2107                                 Property prop = new Property (a_type, t_args [i], Modifiers.PUBLIC,
2108                                         new MemberName (p.Name, p.Location), null);
2109                                 prop.Get = new Property.GetMethod (prop, 0, null, p.Location);
2110                                 prop.Get.Block = get_block;
2111                                 a_type.AddMember (prop);
2112                         }
2113
2114                         if (error)
2115                                 return null;
2116
2117                         a_type.AddConstructor (c);
2118                         return a_type;
2119                 }
2120                 
2121                 protected override bool DoDefineMembers ()
2122                 {
2123                         if (!base.DoDefineMembers ())
2124                                 return false;
2125
2126                         Location loc = Location;
2127
2128                         var equals_parameters = ParametersCompiled.CreateFullyResolved (
2129                                 new Parameter (new TypeExpression (Compiler.BuiltinTypes.Object, loc), "obj", 0, null, loc), Compiler.BuiltinTypes.Object);
2130
2131                         Method equals = new Method (this, new TypeExpression (Compiler.BuiltinTypes.Bool, loc),
2132                                 Modifiers.PUBLIC | Modifiers.OVERRIDE | Modifiers.DEBUGGER_HIDDEN, new MemberName ("Equals", loc),
2133                                 equals_parameters, null);
2134
2135                         equals_parameters[0].Resolve (equals, 0);
2136
2137                         Method tostring = new Method (this, new TypeExpression (Compiler.BuiltinTypes.String, loc),
2138                                 Modifiers.PUBLIC | Modifiers.OVERRIDE | Modifiers.DEBUGGER_HIDDEN, new MemberName ("ToString", loc),
2139                                 ParametersCompiled.EmptyReadOnlyParameters, null);
2140
2141                         ToplevelBlock equals_block = new ToplevelBlock (Compiler, equals.ParameterInfo, loc);
2142
2143                         TypeExpr current_type;
2144                         if (CurrentTypeParameters != null) {
2145                                 var targs = new TypeArguments ();
2146                                 for (int i = 0; i < CurrentTypeParameters.Count; ++i) {
2147                                         targs.Add (new TypeParameterExpr (CurrentTypeParameters[i], Location));
2148                                 }
2149
2150                                 current_type = new GenericTypeExpr (Definition, targs, loc);
2151                         } else {
2152                                 current_type = new TypeExpression (Definition, loc);
2153                         }
2154
2155                         var li_other = LocalVariable.CreateCompilerGenerated (CurrentType, equals_block, loc);
2156                         equals_block.AddStatement (new BlockVariable (new TypeExpression (li_other.Type, loc), li_other));
2157                         var other_variable = new LocalVariableReference (li_other, loc);
2158
2159                         MemberAccess system_collections_generic = new MemberAccess (new MemberAccess (
2160                                 new QualifiedAliasMember ("global", "System", loc), "Collections", loc), "Generic", loc);
2161
2162                         Expression rs_equals = null;
2163                         Expression string_concat = new StringConstant (Compiler.BuiltinTypes, "{", loc);
2164                         Expression rs_hashcode = new IntConstant (Compiler.BuiltinTypes, -2128831035, loc);
2165                         for (int i = 0; i < parameters.Count; ++i) {
2166                                 var p = parameters [i];
2167                                 var f = (Field) Members [i * 2];
2168
2169                                 MemberAccess equality_comparer = new MemberAccess (new MemberAccess (
2170                                         system_collections_generic, "EqualityComparer",
2171                                                 new TypeArguments (new SimpleName (CurrentTypeParameters [i].Name, loc)), loc),
2172                                                 "Default", loc);
2173
2174                                 Arguments arguments_equal = new Arguments (2);
2175                                 arguments_equal.Add (new Argument (new MemberAccess (new This (f.Location), f.Name)));
2176                                 arguments_equal.Add (new Argument (new MemberAccess (other_variable, f.Name)));
2177
2178                                 Expression field_equal = new Invocation (new MemberAccess (equality_comparer,
2179                                         "Equals", loc), arguments_equal);
2180
2181                                 Arguments arguments_hashcode = new Arguments (1);
2182                                 arguments_hashcode.Add (new Argument (new MemberAccess (new This (f.Location), f.Name)));
2183                                 Expression field_hashcode = new Invocation (new MemberAccess (equality_comparer,
2184                                         "GetHashCode", loc), arguments_hashcode);
2185
2186                                 IntConstant FNV_prime = new IntConstant (Compiler.BuiltinTypes, 16777619, loc);                         
2187                                 rs_hashcode = new Binary (Binary.Operator.Multiply,
2188                                         new Binary (Binary.Operator.ExclusiveOr, rs_hashcode, field_hashcode),
2189                                         FNV_prime);
2190
2191                                 Expression field_to_string = new Conditional (new BooleanExpression (new Binary (Binary.Operator.Inequality,
2192                                         new MemberAccess (new This (f.Location), f.Name), new NullLiteral (loc))),
2193                                         new Invocation (new MemberAccess (
2194                                                 new MemberAccess (new This (f.Location), f.Name), "ToString"), null),
2195                                         new StringConstant (Compiler.BuiltinTypes, string.Empty, loc), loc);
2196
2197                                 if (rs_equals == null) {
2198                                         rs_equals = field_equal;
2199                                         string_concat = new Binary (Binary.Operator.Addition,
2200                                                 string_concat,
2201                                                 new Binary (Binary.Operator.Addition,
2202                                                         new StringConstant (Compiler.BuiltinTypes, " " + p.Name + " = ", loc),
2203                                                         field_to_string));
2204                                         continue;
2205                                 }
2206
2207                                 //
2208                                 // Implementation of ToString () body using string concatenation
2209                                 //                              
2210                                 string_concat = new Binary (Binary.Operator.Addition,
2211                                         new Binary (Binary.Operator.Addition,
2212                                                 string_concat,
2213                                                 new StringConstant (Compiler.BuiltinTypes, ", " + p.Name + " = ", loc)),
2214                                         field_to_string);
2215
2216                                 rs_equals = new Binary (Binary.Operator.LogicalAnd, rs_equals, field_equal);
2217                         }
2218
2219                         string_concat = new Binary (Binary.Operator.Addition,
2220                                 string_concat,
2221                                 new StringConstant (Compiler.BuiltinTypes, " }", loc));
2222
2223                         //
2224                         // Equals (object obj) override
2225                         //              
2226                         var other_variable_assign = new TemporaryVariableReference (li_other, loc);
2227                         equals_block.AddStatement (new StatementExpression (
2228                                 new SimpleAssign (other_variable_assign,
2229                                         new As (equals_block.GetParameterReference (0, loc),
2230                                                 current_type, loc), loc)));
2231
2232                         Expression equals_test = new Binary (Binary.Operator.Inequality, other_variable, new NullLiteral (loc));
2233                         if (rs_equals != null)
2234                                 equals_test = new Binary (Binary.Operator.LogicalAnd, equals_test, rs_equals);
2235                         equals_block.AddStatement (new Return (equals_test, loc));
2236
2237                         equals.Block = equals_block;
2238                         equals.Define ();
2239                         Members.Add (equals);
2240
2241                         //
2242                         // GetHashCode () override
2243                         //
2244                         Method hashcode = new Method (this, new TypeExpression (Compiler.BuiltinTypes.Int, loc),
2245                                 Modifiers.PUBLIC | Modifiers.OVERRIDE | Modifiers.DEBUGGER_HIDDEN,
2246                                 new MemberName ("GetHashCode", loc),
2247                                 ParametersCompiled.EmptyReadOnlyParameters, null);
2248
2249                         //
2250                         // Modified FNV with good avalanche behavior and uniform
2251                         // distribution with larger hash sizes.
2252                         //
2253                         // const int FNV_prime = 16777619;
2254                         // int hash = (int) 2166136261;
2255                         // foreach (int d in data)
2256                         //     hash = (hash ^ d) * FNV_prime;
2257                         // hash += hash << 13;
2258                         // hash ^= hash >> 7;
2259                         // hash += hash << 3;
2260                         // hash ^= hash >> 17;
2261                         // hash += hash << 5;
2262
2263                         ToplevelBlock hashcode_top = new ToplevelBlock (Compiler, loc);
2264                         Block hashcode_block = new Block (hashcode_top, loc, loc);
2265                         hashcode_top.AddStatement (new Unchecked (hashcode_block, loc));
2266
2267                         var li_hash = LocalVariable.CreateCompilerGenerated (Compiler.BuiltinTypes.Int, hashcode_top, loc);
2268                         hashcode_block.AddStatement (new BlockVariable (new TypeExpression (li_hash.Type, loc), li_hash));
2269                         LocalVariableReference hash_variable_assign = new LocalVariableReference (li_hash, loc);
2270                         hashcode_block.AddStatement (new StatementExpression (
2271                                 new SimpleAssign (hash_variable_assign, rs_hashcode)));
2272
2273                         var hash_variable = new LocalVariableReference (li_hash, loc);
2274                         hashcode_block.AddStatement (new StatementExpression (
2275                                 new CompoundAssign (Binary.Operator.Addition, hash_variable,
2276                                         new Binary (Binary.Operator.LeftShift, hash_variable, new IntConstant (Compiler.BuiltinTypes, 13, loc)))));
2277                         hashcode_block.AddStatement (new StatementExpression (
2278                                 new CompoundAssign (Binary.Operator.ExclusiveOr, hash_variable,
2279                                         new Binary (Binary.Operator.RightShift, hash_variable, new IntConstant (Compiler.BuiltinTypes, 7, loc)))));
2280                         hashcode_block.AddStatement (new StatementExpression (
2281                                 new CompoundAssign (Binary.Operator.Addition, hash_variable,
2282                                         new Binary (Binary.Operator.LeftShift, hash_variable, new IntConstant (Compiler.BuiltinTypes, 3, loc)))));
2283                         hashcode_block.AddStatement (new StatementExpression (
2284                                 new CompoundAssign (Binary.Operator.ExclusiveOr, hash_variable,
2285                                         new Binary (Binary.Operator.RightShift, hash_variable, new IntConstant (Compiler.BuiltinTypes, 17, loc)))));
2286                         hashcode_block.AddStatement (new StatementExpression (
2287                                 new CompoundAssign (Binary.Operator.Addition, hash_variable,
2288                                         new Binary (Binary.Operator.LeftShift, hash_variable, new IntConstant (Compiler.BuiltinTypes, 5, loc)))));
2289
2290                         hashcode_block.AddStatement (new Return (hash_variable, loc));
2291                         hashcode.Block = hashcode_top;
2292                         hashcode.Define ();
2293                         Members.Add (hashcode);
2294
2295                         //
2296                         // ToString () override
2297                         //
2298
2299                         ToplevelBlock tostring_block = new ToplevelBlock (Compiler, loc);
2300                         tostring_block.AddStatement (new Return (string_concat, loc));
2301                         tostring.Block = tostring_block;
2302                         tostring.Define ();
2303                         Members.Add (tostring);
2304
2305                         return true;
2306                 }
2307
2308                 public override string GetSignatureForError ()
2309                 {
2310                         return SignatureForError;
2311                 }
2312
2313                 public override CompilationSourceFile GetCompilationSourceFile ()
2314                 {
2315                         return null;
2316                 }
2317
2318                 public IList<AnonymousTypeParameter> Parameters {
2319                         get {
2320                                 return parameters;
2321                         }
2322                 }
2323         }
2324 }