[mcs] C#7 throw expression
[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
844         public class HoistedParameter : HoistedVariable
845         {
846                 sealed class HoistedFieldAssign : CompilerAssign
847                 {
848                         public HoistedFieldAssign (Expression target, Expression source)
849                                 : base (target, source, target.Location)
850                         {
851                         }
852
853                         protected override Expression ResolveConversions (ResolveContext ec)
854                         {
855                                 //
856                                 // Implicit conversion check fails for hoisted type arguments
857                                 // as they are of different types (!!0 x !0)
858                                 //
859                                 return this;
860                         }
861                 }
862
863                 readonly ParameterReference parameter;
864
865                 public HoistedParameter (AnonymousMethodStorey scope, ParameterReference par)
866                         : base (scope, par.Name, par.Type)
867                 {
868                         this.parameter = par;
869                 }
870
871                 public HoistedParameter (HoistedParameter hp, string name)
872                         : base (hp.storey, name, hp.parameter.Type)
873                 {
874                         this.parameter = hp.parameter;
875                 }
876
877                 #region Properties
878
879                 public bool IsAssigned { get; set; }
880
881                 public ParameterReference Parameter {
882                         get {
883                                 return parameter;
884                         }
885                 }
886
887                 #endregion
888
889                 public void EmitHoistingAssignment (EmitContext ec)
890                 {
891                         //
892                         // Remove hoisted redirection to emit assignment from original parameter
893                         //
894                         var temp = parameter.Parameter.HoistedVariant;
895                         parameter.Parameter.HoistedVariant = null;
896
897                         var a = new HoistedFieldAssign (GetFieldExpression (ec), parameter);
898                         a.EmitStatement (ec);
899
900                         parameter.Parameter.HoistedVariant = temp;
901                 }
902         }
903
904         class HoistedLocalVariable : HoistedVariable
905         {
906                 public HoistedLocalVariable (AnonymousMethodStorey storey, LocalVariable local, string name)
907                         : base (storey, name, local.Type)
908                 {
909                 }
910         }
911
912         public class HoistedThis : HoistedVariable
913         {
914                 public HoistedThis (AnonymousMethodStorey storey, Field field)
915                         : base (storey, field)
916                 {
917                 }
918         }
919
920         //
921         // Anonymous method expression as created by parser
922         //
923         public class AnonymousMethodExpression : Expression
924         {
925                 //
926                 // Special conversion for nested expression tree lambdas
927                 //
928                 class Quote : ShimExpression
929                 {
930                         public Quote (Expression expr)
931                                 : base (expr)
932                         {
933                         }
934
935                         public override Expression CreateExpressionTree (ResolveContext ec)
936                         {
937                                 var args = new Arguments (1);
938                                 args.Add (new Argument (expr.CreateExpressionTree (ec)));
939                                 return CreateExpressionFactoryCall (ec, "Quote", args);
940                         }
941
942                         protected override Expression DoResolve (ResolveContext rc)
943                         {
944                                 expr = expr.Resolve (rc);
945                                 if (expr == null)
946                                         return null;
947
948                                 eclass = expr.eclass;
949                                 type = expr.Type;
950                                 return this;
951                         }
952                 }
953
954                 readonly Dictionary<TypeSpec, Expression> compatibles;
955
956                 public ParametersBlock Block;
957
958                 public AnonymousMethodExpression (Location loc)
959                 {
960                         this.loc = loc;
961                         this.compatibles = new Dictionary<TypeSpec, Expression> ();
962                 }
963
964                 #region Properties
965
966                 public override string ExprClassName {
967                         get {
968                                 return "anonymous method";
969                         }
970                 }
971
972                 public virtual bool HasExplicitParameters {
973                         get {
974                                 return Parameters != ParametersCompiled.Undefined;
975                         }
976                 }
977
978                 public override bool IsSideEffectFree {
979                         get {
980                                 return true;
981                         }
982                 }
983
984                 public ParametersCompiled Parameters {
985                         get {
986                                 return Block.Parameters;
987                         }
988                 }
989
990                 public ReportPrinter TypeInferenceReportPrinter {
991                         get; set;
992                 }
993
994                 #endregion
995
996                 //
997                 // Returns true if the body of lambda expression can be implicitly
998                 // converted to the delegate of type `delegate_type'
999                 //
1000                 public bool ImplicitStandardConversionExists (ResolveContext ec, TypeSpec delegate_type)
1001                 {
1002                         using (ec.With (ResolveContext.Options.InferReturnType, false)) {
1003                                 using (ec.Set (ResolveContext.Options.ProbingMode)) {
1004                                         var prev = ec.Report.SetPrinter (TypeInferenceReportPrinter ?? new NullReportPrinter ());
1005
1006                                         var res = Compatible (ec, delegate_type) != null;
1007
1008                                         ec.Report.SetPrinter (prev);
1009
1010                                         return res;
1011                                 }
1012                         }
1013                 }
1014
1015                 TypeSpec CompatibleChecks (ResolveContext ec, TypeSpec delegate_type)
1016                 {
1017                         if (delegate_type.IsDelegate)
1018                                 return delegate_type;
1019
1020                         if (delegate_type.IsExpressionTreeType) {
1021                                 delegate_type = delegate_type.TypeArguments [0];
1022                                 if (delegate_type.IsDelegate)
1023                                         return delegate_type;
1024
1025                                 ec.Report.Error (835, loc, "Cannot convert `{0}' to an expression tree of non-delegate type `{1}'",
1026                                         GetSignatureForError (), delegate_type.GetSignatureForError ());
1027                                 return null;
1028                         }
1029
1030                         ec.Report.Error (1660, loc, "Cannot convert `{0}' to non-delegate type `{1}'",
1031                                       GetSignatureForError (), delegate_type.GetSignatureForError ());
1032                         return null;
1033                 }
1034
1035                 protected bool VerifyExplicitParameters (ResolveContext ec, TypeInferenceContext tic, TypeSpec delegate_type, AParametersCollection parameters)
1036                 {
1037                         if (VerifyParameterCompatibility (ec, tic, delegate_type, parameters, ec.IsInProbingMode))
1038                                 return true;
1039
1040                         if (!ec.IsInProbingMode)
1041                                 ec.Report.Error (1661, loc,
1042                                         "Cannot convert `{0}' to delegate type `{1}' since there is a parameter mismatch",
1043                                         GetSignatureForError (), delegate_type.GetSignatureForError ());
1044
1045                         return false;
1046                 }
1047
1048                 protected bool VerifyParameterCompatibility (ResolveContext ec, TypeInferenceContext tic, TypeSpec delegate_type, AParametersCollection invoke_pd, bool ignore_errors)
1049                 {
1050                         if (Parameters.Count != invoke_pd.Count) {
1051                                 if (ignore_errors)
1052                                         return false;
1053                                 
1054                                 ec.Report.Error (1593, loc, "Delegate `{0}' does not take `{1}' arguments",
1055                                               delegate_type.GetSignatureForError (), Parameters.Count.ToString ());
1056                                 return false;
1057                         }
1058
1059                         bool has_implicit_parameters = !HasExplicitParameters;
1060                         bool error = false;
1061
1062                         for (int i = 0; i < Parameters.Count; ++i) {
1063                                 Parameter.Modifier p_mod = invoke_pd.FixedParameters [i].ModFlags;
1064                                 if (Parameters.FixedParameters [i].ModFlags != p_mod && p_mod != Parameter.Modifier.PARAMS) {
1065                                         if (ignore_errors)
1066                                                 return false;
1067                                         
1068                                         if (p_mod == Parameter.Modifier.NONE)
1069                                                 ec.Report.Error (1677, Parameters[i].Location, "Parameter `{0}' should not be declared with the `{1}' keyword",
1070                                                               (i + 1).ToString (), Parameter.GetModifierSignature (Parameters [i].ModFlags));
1071                                         else
1072                                                 ec.Report.Error (1676, Parameters[i].Location, "Parameter `{0}' must be declared with the `{1}' keyword",
1073                                                               (i+1).ToString (), Parameter.GetModifierSignature (p_mod));
1074                                         error = true;
1075                                 }
1076
1077                                 if (has_implicit_parameters)
1078                                         continue;
1079
1080                                 TypeSpec type = invoke_pd.Types [i];
1081
1082                                 if (tic != null)
1083                                         type = tic.InflateGenericArgument (ec, type);
1084                                 
1085                                 if (!TypeSpecComparer.IsEqual (type, Parameters.Types [i])) {
1086                                         if (ignore_errors)
1087                                                 return false;
1088                                         
1089                                         ec.Report.Error (1678, Parameters [i].Location, "Parameter `{0}' is declared as type `{1}' but should be `{2}'",
1090                                                       (i+1).ToString (),
1091                                                       Parameters.Types [i].GetSignatureForError (),
1092                                                       invoke_pd.Types [i].GetSignatureForError ());
1093                                         error = true;
1094                                 }
1095                         }
1096
1097                         return !error;
1098                 }
1099
1100                 //
1101                 // Infers type arguments based on explicit arguments
1102                 //
1103                 public bool ExplicitTypeInference (TypeInferenceContext type_inference, TypeSpec delegate_type)
1104                 {
1105                         if (!HasExplicitParameters)
1106                                 return false;
1107
1108                         if (!delegate_type.IsDelegate) {
1109                                 if (!delegate_type.IsExpressionTreeType)
1110                                         return false;
1111
1112                                 delegate_type = TypeManager.GetTypeArguments (delegate_type) [0];
1113                                 if (!delegate_type.IsDelegate)
1114                                         return false;
1115                         }
1116                         
1117                         AParametersCollection d_params = Delegate.GetParameters (delegate_type);
1118                         if (d_params.Count != Parameters.Count)
1119                                 return false;
1120
1121                         var ptypes = Parameters.Types;
1122                         var dtypes = d_params.Types;
1123                         for (int i = 0; i < Parameters.Count; ++i) {
1124                                 if (type_inference.ExactInference (ptypes[i], dtypes[i]) == 0) {
1125                                         //
1126                                         // Continue when 0 (quick path) does not mean inference failure. Checking for
1127                                         // same type handles cases like int -> int
1128                                         //
1129                                         if (ptypes[i] == dtypes[i])
1130                                                 continue;
1131
1132                                         return false;
1133                                 }
1134                         }
1135
1136                         return true;
1137                 }
1138
1139                 public TypeSpec InferReturnType (ResolveContext ec, TypeInferenceContext tic, TypeSpec delegate_type)
1140                 {
1141                         Expression expr;
1142                         AnonymousExpression am;
1143
1144                         if (compatibles.TryGetValue (delegate_type, out expr)) {
1145                                 am = expr as AnonymousExpression;
1146                                 return am == null ? null : am.ReturnType;
1147                         }
1148
1149                         using (ec.Set (ResolveContext.Options.ProbingMode | ResolveContext.Options.InferReturnType)) {
1150                                 ReportPrinter prev;
1151                                 if (TypeInferenceReportPrinter != null) {
1152                                         prev = ec.Report.SetPrinter (TypeInferenceReportPrinter);
1153                                 } else {
1154                                         prev = null;
1155                                 }
1156
1157                                 HashSet<LocalVariable> undeclaredVariables = null;
1158                                 var body = CompatibleMethodBody (ec, tic, null, delegate_type, ref undeclaredVariables);
1159                                 if (body != null) {
1160                                         am = body.Compatible (ec, body);
1161                                 } else {
1162                                         am = null;
1163                                 }
1164
1165                                 if (TypeInferenceReportPrinter != null) {
1166                                         ec.Report.SetPrinter (prev);
1167                                 }
1168
1169                                 if (undeclaredVariables != null) {
1170                                         body.Block.TopBlock.SetUndeclaredVariables (undeclaredVariables);
1171                                 }
1172                         }
1173
1174                         if (am == null)
1175                                 return null;
1176
1177 //                      compatibles.Add (delegate_type, am);
1178                         return am.ReturnType;
1179                 }
1180
1181                 public override bool ContainsEmitWithAwait ()
1182                 {
1183                         return false;
1184                 }
1185
1186                 //
1187                 // Returns AnonymousMethod container if this anonymous method
1188                 // expression can be implicitly converted to the delegate type `delegate_type'
1189                 //
1190                 public Expression Compatible (ResolveContext ec, TypeSpec type)
1191                 {
1192                         Expression am;
1193                         if (compatibles.TryGetValue (type, out am))
1194                                 return am;
1195
1196                         if (type == InternalType.ErrorType)
1197                                 return null;
1198
1199                         TypeSpec delegate_type = CompatibleChecks (ec, type);
1200                         if (delegate_type == null)
1201                                 return null;
1202
1203                         //
1204                         // At this point its the first time we know the return type that is 
1205                         // needed for the anonymous method.  We create the method here.
1206                         //
1207
1208                         var invoke_mb = Delegate.GetInvokeMethod (delegate_type);
1209                         TypeSpec return_type = invoke_mb.ReturnType;
1210
1211                         //
1212                         // Second: the return type of the delegate must be compatible with 
1213                         // the anonymous type.   Instead of doing a pass to examine the block
1214                         // we satisfy the rule by setting the return type on the EmitContext
1215                         // to be the delegate type return type.
1216                         //
1217                         HashSet<LocalVariable> undeclaredVariables = null;
1218                         var body = CompatibleMethodBody (ec, null, return_type, delegate_type, ref undeclaredVariables);
1219                         if (body == null)
1220                                 return null;
1221
1222                         bool etree_conversion = delegate_type != type;
1223
1224                         try {
1225                                 if (etree_conversion) {
1226                                         if (ec.HasSet (ResolveContext.Options.ExpressionTreeConversion)) {
1227                                                 //
1228                                                 // Nested expression tree lambda use same scope as parent
1229                                                 // lambda, this also means no variable capturing between this
1230                                                 // and parent scope
1231                                                 //
1232                                                 am = body.Compatible (ec, ec.CurrentAnonymousMethod);
1233
1234                                                 //
1235                                                 // Quote nested expression tree
1236                                                 //
1237                                                 if (am != null)
1238                                                         am = new Quote (am);
1239                                         } else {
1240                                                 int errors = ec.Report.Errors;
1241
1242                                                 if (Block.IsAsync) {
1243                                                         ec.Report.Error (1989, loc, "Async lambda expressions cannot be converted to expression trees");
1244                                                 }
1245
1246                                                 using (ec.Set (ResolveContext.Options.ExpressionTreeConversion)) {
1247                                                         am = body.Compatible (ec);
1248                                                 }
1249
1250                                                 //
1251                                                 // Rewrite expressions into expression tree when targeting Expression<T>
1252                                                 //
1253                                                 if (am != null && errors == ec.Report.Errors)
1254                                                         am = CreateExpressionTree (ec, delegate_type);
1255                                         }
1256                                 } else {
1257                                         am = body.Compatible (ec);
1258
1259                                         if (body.DirectMethodGroupConversion != null) {
1260                                                 var errors_printer = new SessionReportPrinter ();
1261                                                 var old = ec.Report.SetPrinter (errors_printer);
1262                                                 var expr = new ImplicitDelegateCreation (delegate_type, body.DirectMethodGroupConversion, loc) {
1263                                                         AllowSpecialMethodsInvocation = true
1264                                                 }.Resolve (ec);
1265                                                 ec.Report.SetPrinter (old);
1266                                                 if (expr != null && errors_printer.ErrorsCount == 0)
1267                                                         am = expr;
1268                                         }
1269                                 }
1270                         } catch (CompletionResult) {
1271                                 throw;
1272                         } catch (FatalException) {
1273                                 throw;
1274                         } catch (Exception e) {
1275                                 throw new InternalErrorException (e, loc);
1276                         } finally {
1277                                 //
1278                                 // LocalVariable is not stateless and it's not easy to clone because it's
1279                                 // cached in toplevel block. Unsetting any initialized variables should
1280                                 // be enough
1281                                 //
1282                                 if (undeclaredVariables != null) {
1283                                         body.Block.TopBlock.SetUndeclaredVariables (undeclaredVariables);
1284                                 }
1285                         }
1286
1287                         if (!ec.IsInProbingMode && !etree_conversion) {
1288                                 compatibles.Add (type, am ?? EmptyExpression.Null);
1289                         }
1290
1291                         return am;
1292                 }
1293
1294                 protected virtual Expression CreateExpressionTree (ResolveContext ec, TypeSpec delegate_type)
1295                 {
1296                         return CreateExpressionTree (ec);
1297                 }
1298
1299                 public override Expression CreateExpressionTree (ResolveContext ec)
1300                 {
1301                         ec.Report.Error (1946, loc, "An anonymous method cannot be converted to an expression tree");
1302                         return null;
1303                 }
1304
1305                 protected virtual ParametersCompiled ResolveParameters (ResolveContext ec, TypeInferenceContext tic, TypeSpec delegate_type)
1306                 {
1307                         var delegate_parameters = Delegate.GetParameters (delegate_type);
1308
1309                         if (Parameters == ParametersCompiled.Undefined) {
1310                                 //
1311                                 // We provide a set of inaccessible parameters
1312                                 //
1313                                 Parameter[] fixedpars = new Parameter[delegate_parameters.Count];
1314
1315                                 for (int i = 0; i < delegate_parameters.Count; i++) {
1316                                         Parameter.Modifier i_mod = delegate_parameters.FixedParameters [i].ModFlags;
1317                                         if ((i_mod & Parameter.Modifier.OUT) != 0) {
1318                                                 if (!ec.IsInProbingMode) {
1319                                                         ec.Report.Error (1688, loc,
1320                                                                 "Cannot convert anonymous method block without a parameter list to delegate type `{0}' because it has one or more `out' parameters",
1321                                                                 delegate_type.GetSignatureForError ());
1322                                                 }
1323
1324                                                 return null;
1325                                         }
1326                                         fixedpars[i] = new Parameter (
1327                                                 new TypeExpression (delegate_parameters.Types [i], loc), null,
1328                                                 delegate_parameters.FixedParameters [i].ModFlags, null, loc);
1329                                 }
1330
1331                                 return ParametersCompiled.CreateFullyResolved (fixedpars, delegate_parameters.Types);
1332                         }
1333
1334                         if (!VerifyExplicitParameters (ec, tic, delegate_type, delegate_parameters)) {
1335                                 return null;
1336                         }
1337
1338                         return Parameters;
1339                 }
1340
1341                 protected override Expression DoResolve (ResolveContext rc)
1342                 {
1343                         if (rc.HasSet (ResolveContext.Options.ConstantScope)) {
1344                                 rc.Report.Error (1706, loc, "Anonymous methods and lambda expressions cannot be used in the current context");
1345                                 return null;
1346                         }
1347
1348                         //
1349                         // Update top-level block generated duting parsing with actual top-level block
1350                         //
1351                         if (rc.HasAny (ResolveContext.Options.FieldInitializerScope | ResolveContext.Options.BaseInitializer) && rc.CurrentMemberDefinition.Parent.PartialContainer.PrimaryConstructorParameters != null) {
1352                                 var tb = rc.ConstructorBlock.ParametersBlock.TopBlock;
1353                                 if (Block.TopBlock != tb) {
1354                                         Block b = Block;
1355                                         while (b.Parent != Block.TopBlock && b != Block.TopBlock)
1356                                                 b = b.Parent;
1357
1358                                         b.Parent = tb;
1359                                         tb.IncludeBlock (Block, Block.TopBlock);
1360                                         b.ParametersBlock.TopBlock = tb;
1361                                 }
1362                         }
1363
1364                         eclass = ExprClass.Value;
1365
1366                         //
1367                         // This hack means `The type is not accessible
1368                         // anywhere', we depend on special conversion
1369                         // rules.
1370                         // 
1371                         type = InternalType.AnonymousMethod;
1372
1373                         if (!DoResolveParameters (rc))
1374                                 return null;
1375
1376                         return this;
1377                 }
1378
1379                 protected virtual bool DoResolveParameters (ResolveContext rc)
1380                 {
1381                         return Parameters.Resolve (rc);
1382                 }
1383
1384                 public override void Emit (EmitContext ec)
1385                 {
1386                         // nothing, as we only exist to not do anything.
1387                 }
1388
1389                 public static void Error_AddressOfCapturedVar (ResolveContext rc, IVariableReference var, Location loc)
1390                 {
1391                         if (rc.CurrentAnonymousMethod is AsyncInitializer)
1392                                 return;
1393
1394                         rc.Report.Error (1686, loc,
1395                                 "Local variable or parameter `{0}' cannot have their address taken and be used inside an anonymous method, lambda expression or query expression",
1396                                 var.Name);
1397                 }
1398
1399                 public override string GetSignatureForError ()
1400                 {
1401                         return ExprClassName;
1402                 }
1403
1404                 AnonymousMethodBody CompatibleMethodBody (ResolveContext ec, TypeInferenceContext tic, TypeSpec return_type, TypeSpec delegate_type, ref HashSet<LocalVariable> undeclaredVariables)
1405                 {
1406                         ParametersCompiled p = ResolveParameters (ec, tic, delegate_type);
1407                         if (p == null)
1408                                 return null;
1409
1410                         ParametersBlock b = ec.IsInProbingMode ? (ParametersBlock) Block.PerformClone (ref undeclaredVariables) : Block;
1411
1412                         if (b.IsAsync) {
1413                                 var rt = return_type;
1414                                 if (rt != null && rt.Kind != MemberKind.Void && rt != ec.Module.PredefinedTypes.Task.TypeSpec && !rt.IsGenericTask) {
1415                                         ec.Report.Error (4010, loc, "Cannot convert async {0} to delegate type `{1}'",
1416                                                 GetSignatureForError (), delegate_type.GetSignatureForError ());
1417
1418                                         return null;
1419                                 }
1420
1421                                 b = b.ConvertToAsyncTask (ec, ec.CurrentMemberDefinition.Parent.PartialContainer, p, return_type, delegate_type, loc);
1422                         }
1423
1424                         return CompatibleMethodFactory (return_type ?? InternalType.ErrorType, delegate_type, p, b);
1425                 }
1426
1427                 protected virtual AnonymousMethodBody CompatibleMethodFactory (TypeSpec return_type, TypeSpec delegate_type, ParametersCompiled p, ParametersBlock b)
1428                 {
1429                         return new AnonymousMethodBody (p, b, return_type, delegate_type, loc);
1430                 }
1431
1432                 protected override void CloneTo (CloneContext clonectx, Expression t)
1433                 {
1434                         AnonymousMethodExpression target = (AnonymousMethodExpression) t;
1435
1436                         target.Block = (ParametersBlock) clonectx.LookupBlock (Block);
1437                 }
1438                 
1439                 public override object Accept (StructuralVisitor visitor)
1440                 {
1441                         return visitor.Visit (this);
1442                 }
1443         }
1444
1445         //
1446         // Abstract expression for any block which requires variables hoisting
1447         //
1448         public abstract class AnonymousExpression : ExpressionStatement
1449         {
1450                 protected class AnonymousMethodMethod : Method
1451                 {
1452                         public readonly AnonymousExpression AnonymousMethod;
1453                         public readonly AnonymousMethodStorey Storey;
1454
1455                         public AnonymousMethodMethod (TypeDefinition parent, AnonymousExpression am, AnonymousMethodStorey storey,
1456                                                           TypeExpr return_type,
1457                                                           Modifiers mod, MemberName name,
1458                                                           ParametersCompiled parameters)
1459                                 : base (parent, return_type, mod | Modifiers.COMPILER_GENERATED,
1460                                                 name, parameters, null)
1461                         {
1462                                 this.AnonymousMethod = am;
1463                                 this.Storey = storey;
1464
1465                                 Parent.PartialContainer.Members.Add (this);
1466                                 Block = new ToplevelBlock (am.block, parameters);
1467                         }
1468
1469                         public override EmitContext CreateEmitContext (ILGenerator ig, SourceMethodBuilder sourceMethod)
1470                         {
1471                                 EmitContext ec = new EmitContext (this, ig, ReturnType, sourceMethod);
1472                                 ec.CurrentAnonymousMethod = AnonymousMethod;
1473                                 return ec;
1474                         }
1475
1476                         protected override void DefineTypeParameters ()
1477                         {
1478                                 // Type parameters were cloned
1479                         }
1480
1481                         protected override bool ResolveMemberType ()
1482                         {
1483                                 if (!base.ResolveMemberType ())
1484                                         return false;
1485
1486                                 if (Storey != null && Storey.Mutator != null) {
1487                                         if (!parameters.IsEmpty) {
1488                                                 var mutated = Storey.Mutator.Mutate (parameters.Types);
1489                                                 if (mutated != parameters.Types)
1490                                                         parameters = ParametersCompiled.CreateFullyResolved ((Parameter[]) parameters.FixedParameters, mutated);
1491                                         }
1492
1493                                         member_type = Storey.Mutator.Mutate (member_type);
1494                                 }
1495
1496                                 return true;
1497                         }
1498
1499                         public override void Emit ()
1500                         {
1501                                 if (MethodBuilder == null) {
1502                                         Define ();
1503                                 }
1504
1505                                 base.Emit ();
1506                         }
1507                 }
1508
1509                 protected readonly ParametersBlock block;
1510
1511                 public TypeSpec ReturnType;
1512
1513                 protected AnonymousExpression (ParametersBlock block, TypeSpec return_type, Location loc)
1514                 {
1515                         this.ReturnType = return_type;
1516                         this.block = block;
1517                         this.loc = loc;
1518                 }
1519
1520                 public abstract string ContainerType { get; }
1521                 public abstract bool IsIterator { get; }
1522                 public abstract AnonymousMethodStorey Storey { get; }
1523
1524                 //
1525                 // The block that makes up the body for the anonymous method
1526                 //
1527                 public ParametersBlock Block {
1528                         get {
1529                                 return block;
1530                         }
1531                 }
1532
1533                 public AnonymousExpression Compatible (ResolveContext ec)
1534                 {
1535                         return Compatible (ec, this);
1536                 }
1537
1538                 public AnonymousExpression Compatible (ResolveContext ec, AnonymousExpression ae)
1539                 {
1540                         if (block.Resolved)
1541                                 return this;
1542
1543                         // TODO: Implement clone
1544                         BlockContext aec = new BlockContext (ec, block, ReturnType);
1545                         aec.CurrentAnonymousMethod = ae;
1546
1547                         var am = this as AnonymousMethodBody;
1548
1549                         if (ec.HasSet (ResolveContext.Options.InferReturnType) && am != null) {
1550                                 am.ReturnTypeInference = new TypeInferenceContext ();
1551                         }
1552
1553                         var bc = ec as BlockContext;
1554
1555                         if (bc != null) {
1556                                 aec.AssignmentInfoOffset = bc.AssignmentInfoOffset;
1557                                 aec.EnclosingLoop = bc.EnclosingLoop;
1558                                 aec.EnclosingLoopOrSwitch = bc.EnclosingLoopOrSwitch;
1559                                 aec.Switch = bc.Switch;
1560                         }
1561
1562                         var errors = ec.Report.Errors;
1563
1564                         bool res = Block.Resolve (aec);
1565
1566                         if (res && errors == ec.Report.Errors) {
1567                                 MarkReachable (new Reachability ());
1568
1569                                 if (!CheckReachableExit (ec.Report)) {
1570                                         return null;
1571                                 }
1572
1573                                 if (bc != null)
1574                                         bc.AssignmentInfoOffset = aec.AssignmentInfoOffset;
1575                         }
1576
1577                         if (am != null && am.ReturnTypeInference != null) {
1578                                 am.ReturnTypeInference.FixAllTypes (ec);
1579                                 ReturnType = am.ReturnTypeInference.InferredTypeArguments [0];
1580                                 am.ReturnTypeInference = null;
1581
1582                                 //
1583                                 // If e is synchronous the inferred return type is T
1584                                 // If e is asynchronous and the body of F is either an expression classified as nothing
1585                                 // or a statement block where no return statements have expressions, the inferred return type is Task
1586                                 // If e is async and has an inferred result type T, the inferred return type is Task<T>
1587                                 //
1588                                 if (block.IsAsync && ReturnType != null) {
1589                                         ReturnType = ReturnType.Kind == MemberKind.Void ?
1590                                                 ec.Module.PredefinedTypes.Task.TypeSpec :
1591                                                 ec.Module.PredefinedTypes.TaskGeneric.TypeSpec.MakeGenericType (ec, new [] { ReturnType });
1592                                 }
1593                         }
1594
1595                         if (res && errors != ec.Report.Errors)
1596                                 return null;
1597
1598                         if (block.IsAsync && block.Original.ParametersBlock.HasCapturedThis && ec.CurrentAnonymousMethod != null && ec.CurrentAnonymousMethod.block.IsAsync) {
1599                                 //
1600                                 // We'll do ldftn to load the fabricated m_X method but
1601                                 // because we are inside struct the method can be hoisted
1602                                 // anywhere in the parent scope
1603                                 //
1604                                 ec.CurrentBlock.ParametersBlock.HasReferenceToStoreyForInstanceLambdas = true;
1605                         }
1606
1607                         return res ? this : null;
1608                 }
1609
1610                 public override bool ContainsEmitWithAwait ()
1611                 {
1612                         return false;
1613                 }
1614
1615                 bool CheckReachableExit (Report report)
1616                 {
1617                         if (block.HasReachableClosingBrace && ReturnType.Kind != MemberKind.Void) {
1618                                 // FIXME: Flow-analysis on MoveNext generated code
1619                                 if (!IsIterator) {
1620                                         report.Error (1643, StartLocation,
1621                                                         "Not all code paths return a value in anonymous method of type `{0}'", GetSignatureForError ());
1622
1623                                         return false;
1624                                 }
1625                         }
1626
1627                         return true;
1628                 }
1629
1630                 public override void FlowAnalysis (FlowAnalysisContext fc)
1631                 {
1632                         // We are reachable, mark block body reachable too
1633                         MarkReachable (new Reachability ());
1634
1635                         CheckReachableExit (fc.Report);
1636
1637                         var das = fc.BranchDefiniteAssignment ();
1638                         var prev_pb = fc.ParametersBlock;
1639                         fc.ParametersBlock = Block;
1640                         var da_ontrue = fc.DefiniteAssignmentOnTrue;
1641                         var da_onfalse = fc.DefiniteAssignmentOnFalse;
1642                         var prev_tf = fc.TryFinally;
1643
1644                         fc.DefiniteAssignmentOnTrue = fc.DefiniteAssignmentOnFalse = null;
1645                         fc.TryFinally = null;
1646                         block.FlowAnalysis (fc);
1647
1648                         fc.ParametersBlock = prev_pb;
1649                         fc.DefiniteAssignment = das;
1650                         fc.DefiniteAssignmentOnTrue = da_ontrue;
1651                         fc.DefiniteAssignmentOnFalse = da_onfalse;
1652                         fc.TryFinally = prev_tf;
1653                 }
1654
1655                 public override Reachability MarkReachable (Reachability rc)
1656                 {
1657                         block.MarkReachable (rc);
1658                         return rc;
1659                 }
1660
1661                 public void SetHasThisAccess ()
1662                 {
1663                         ExplicitBlock b = block;
1664                         do {
1665                                 if (b.HasCapturedThis)
1666                                         return;
1667
1668                                 b.HasCapturedThis = true;
1669                                 b = b.Parent == null ? null : b.Parent.Explicit;
1670                         } while (b != null);
1671                 }
1672         }
1673
1674         public class AnonymousMethodBody : AnonymousExpression
1675         {
1676                 protected readonly ParametersCompiled parameters;
1677                 AnonymousMethodStorey storey;
1678
1679                 AnonymousMethodMethod method;
1680                 Field am_cache;
1681                 string block_name;
1682                 TypeInferenceContext return_inference;
1683
1684                 public AnonymousMethodBody (ParametersCompiled parameters,
1685                                         ParametersBlock block, TypeSpec return_type, TypeSpec delegate_type,
1686                                         Location loc)
1687                         : base (block, return_type, loc)
1688                 {
1689                         this.type = delegate_type;
1690                         this.parameters = parameters;
1691                 }
1692
1693                 #region Properties
1694
1695                 public override string ContainerType {
1696                         get { return "anonymous method"; }
1697                 }
1698
1699                 //
1700                 // Method-group instance for lambdas which can be replaced with
1701                 // simple method group call
1702                 //
1703                 public MethodGroupExpr DirectMethodGroupConversion {
1704                         get; set;
1705                 }
1706
1707                 public override bool IsIterator {
1708                         get {
1709                                 return false;
1710                         }
1711                 }
1712
1713                 public ParametersCompiled Parameters {
1714                         get {
1715                                 return parameters;
1716                         }
1717                 }
1718
1719                 public TypeInferenceContext ReturnTypeInference {
1720                         get {
1721                                 return return_inference;
1722                         }
1723                         set {
1724                                 return_inference = value;
1725                         }
1726                 }
1727
1728                 public override AnonymousMethodStorey Storey {
1729                         get {
1730                                 return storey;
1731                         }
1732                 }
1733
1734                 #endregion
1735
1736                 public override Expression CreateExpressionTree (ResolveContext ec)
1737                 {
1738                         ec.Report.Error (1945, loc, "An expression tree cannot contain an anonymous method expression");
1739                         return null;
1740                 }
1741
1742                 bool Define (ResolveContext ec)
1743                 {
1744                         if (!Block.Resolved && Compatible (ec) == null)
1745                                 return false;
1746
1747                         if (block_name == null) {
1748                                 MemberCore mc = (MemberCore) ec.MemberContext;
1749                                 block_name = mc.MemberName.Basename;
1750                         }
1751
1752                         return true;
1753                 }
1754
1755                 //
1756                 // Creates a host for the anonymous method
1757                 //
1758                 AnonymousMethodMethod DoCreateMethodHost (EmitContext ec)
1759                 {
1760                         //
1761                         // Anonymous method body can be converted to
1762                         //
1763                         // 1, an instance method in current scope when only `this' is hoisted
1764                         // 2, a static method in current scope when neither `this' nor any variable is hoisted
1765                         // 3, an instance method in compiler generated storey when any hoisted variable exists
1766                         //
1767
1768                         Modifiers modifiers;
1769                         TypeDefinition parent = null;
1770                         TypeParameters hoisted_tparams = null;
1771                         ParametersCompiled method_parameters = parameters;
1772
1773                         var src_block = Block.Original.Explicit;
1774                         if (src_block.HasCapturedVariable || src_block.HasCapturedThis) {
1775                                 parent = storey = FindBestMethodStorey ();
1776
1777                                 if (storey == null) {
1778                                         var top_block = src_block.ParametersBlock.TopBlock;
1779                                         var sm = top_block.StateMachine;
1780
1781                                         if (src_block.HasCapturedThis) {
1782                                                 //
1783                                                 // Remove hoisted 'this' request when simple instance method is
1784                                                 // enough. No hoisted variables only 'this' and don't need to
1785                                                 // propagate this to value type state machine.
1786                                                 //
1787                                                 StateMachine sm_parent;
1788                                                 var pb = src_block.ParametersBlock;
1789                                                 do {
1790                                                         sm_parent = pb.StateMachine;
1791                                                         pb = pb.Parent == null ? null : pb.Parent.ParametersBlock;
1792                                                 } while (sm_parent == null && pb != null);
1793
1794                                                 if (sm_parent == null) {
1795                                                         top_block.RemoveThisReferenceFromChildrenBlock (src_block);
1796                                                 } else if (sm_parent.Kind == MemberKind.Struct) {
1797                                                         //
1798                                                         // Special case where parent class is used to emit instance method
1799                                                         // because currect storey is of value type (async host) and we cannot
1800                                                         // use ldftn on non-boxed instances either to share mutated state
1801                                                         //
1802                                                         parent = sm_parent.Parent.PartialContainer;
1803                                                         hoisted_tparams = sm_parent.OriginalTypeParameters;
1804                                                 } else if (sm is IteratorStorey) {
1805                                                         //
1806                                                         // For iterators we can host everything in one class
1807                                                         //
1808                                                         parent = storey = sm;
1809                                                 }
1810                                         }
1811                                 } else if (src_block.ParametersBlock.HasReferenceToStoreyForInstanceLambdas) {
1812                                         src_block.ParametersBlock.StateMachine.AddParentStoreyReference (ec, storey);
1813                                 }
1814
1815                                 modifiers = storey != null ? Modifiers.INTERNAL : Modifiers.PRIVATE;
1816                         } else {
1817                                 if (ec.CurrentAnonymousMethod != null)
1818                                         parent = storey = ec.CurrentAnonymousMethod.Storey;
1819
1820                                 modifiers = Modifiers.STATIC | Modifiers.PRIVATE;
1821
1822                                 //
1823                                 // Convert generated method to closed delegate method where unused
1824                                 // this argument is generated during compilation which speeds up dispatch
1825                                 // by about 25%
1826                                 //
1827                                 // Unused as it breaks compatibility
1828                                 //
1829                                 // method_parameters = ParametersCompiled.Prefix (method_parameters,
1830                                 //      new Parameter (null, null, 0, null, loc), ec.Module.Compiler.BuiltinTypes.Object);
1831                         }
1832
1833                         if (storey == null && hoisted_tparams == null)
1834                                 hoisted_tparams = ec.CurrentTypeParameters;
1835
1836                         if (parent == null)
1837                                 parent = ec.CurrentTypeDefinition.Parent.PartialContainer;
1838
1839                         string name = CompilerGeneratedContainer.MakeName (parent != storey ? block_name : null,
1840                                 "m", null, parent.PartialContainer.CounterAnonymousMethods++);
1841
1842                         MemberName member_name;
1843                         if (hoisted_tparams != null) {
1844                                 var type_params = new TypeParameters (hoisted_tparams.Count);
1845                                 for (int i = 0; i < hoisted_tparams.Count; ++i) {
1846                                     type_params.Add (hoisted_tparams[i].CreateHoistedCopy (null));
1847                                 }
1848
1849                                 member_name = new MemberName (name, type_params, Location);
1850                         } else {
1851                                 member_name = new MemberName (name, Location);
1852                         }
1853
1854                         return new AnonymousMethodMethod (parent,
1855                                 this, storey, new TypeExpression (ReturnType, Location), modifiers,
1856                                 member_name, method_parameters);
1857                 }
1858
1859                 protected override Expression DoResolve (ResolveContext ec)
1860                 {
1861                         if (!Define (ec))
1862                                 return null;
1863
1864                         eclass = ExprClass.Value;
1865                         return this;
1866                 }
1867
1868                 public override void Emit (EmitContext ec)
1869                 {
1870                         //
1871                         // Use same anonymous method implementation for scenarios where same
1872                         // code is used from multiple blocks, e.g. field initializers
1873                         //
1874                         if (method == null) {
1875                                 //
1876                                 // Delay an anonymous method definition to avoid emitting unused code
1877                                 // for unreachable blocks or expression trees
1878                                 //
1879                                 method = DoCreateMethodHost (ec);
1880                                 method.Define ();
1881                                 method.PrepareEmit ();
1882                         }
1883
1884                         bool is_static = (method.ModFlags & Modifiers.STATIC) != 0;
1885                         if (is_static && am_cache == null && !ec.IsStaticConstructor) {
1886                                 //
1887                                 // Creates a field cache to store delegate instance if it's not generic
1888                                 //
1889                                 if (!method.MemberName.IsGeneric) {
1890                                         var parent = method.Parent.PartialContainer;
1891                                         int id = parent.AnonymousMethodsCounter++;
1892                                         var cache_type = storey != null && storey.Mutator != null ? storey.Mutator.Mutate (type) : type;
1893
1894                                         am_cache = new Field (parent, new TypeExpression (cache_type, loc),
1895                                                 Modifiers.STATIC | Modifiers.PRIVATE | Modifiers.COMPILER_GENERATED,
1896                                                 new MemberName (CompilerGeneratedContainer.MakeName (null, "f", "am$cache", id), loc), null);
1897                                         am_cache.Define ();
1898                                         parent.AddField (am_cache);
1899                                 } else {
1900                                         // TODO: Implement caching of generated generic static methods
1901                                         //
1902                                         // Idea:
1903                                         //
1904                                         // Some extra class is needed to capture variable generic type
1905                                         // arguments. Maybe we could re-use anonymous types, with a unique
1906                                         // anonymous method id, but they are quite heavy.
1907                                         //
1908                                         // Consider : "() => typeof(T);"
1909                                         //
1910                                         // We need something like
1911                                         // static class Wrap<Tn, Tm, DelegateType> {
1912                                         //              public static DelegateType cache;
1913                                         // }
1914                                         //
1915                                         // We then specialize local variable to capture all generic parameters
1916                                         // and delegate type, e.g. "Wrap<Ta, Tb, DelegateTypeInst> cache;"
1917                                         //
1918                                 }
1919                         }
1920
1921                         Label l_initialized = ec.DefineLabel ();
1922
1923                         if (am_cache != null) {
1924                                 ec.Emit (OpCodes.Ldsfld, am_cache.Spec);
1925                                 ec.Emit (OpCodes.Brtrue_S, l_initialized);
1926                         }
1927
1928                         //
1929                         // Load method delegate implementation
1930                         //
1931
1932                         if (is_static) {
1933                                 ec.EmitNull ();
1934                         } else if (storey != null) {
1935                                 Expression e = storey.GetStoreyInstanceExpression (ec).Resolve (new ResolveContext (ec.MemberContext));
1936                                 if (e != null) {
1937                                         e.Emit (ec);
1938                                 }
1939                         } else {
1940                                 ec.EmitThis ();
1941
1942                                 //
1943                                 // Special case for value type storey where this is not lifted but
1944                                 // droped off to parent class
1945                                 //
1946                                 if (ec.CurrentAnonymousMethod != null && ec.AsyncTaskStorey != null)
1947                                         ec.Emit (OpCodes.Ldfld, ec.AsyncTaskStorey.HoistedThis.Field.Spec);
1948                         }
1949
1950                         var delegate_method = method.Spec;
1951                         if (storey != null && storey.MemberName.IsGeneric) {
1952                                 //
1953                                 // Mutate anonymous method instance type if we are in nested
1954                                 // hoisted generic anonymous method storey
1955                                 //
1956                                 if (ec.IsAnonymousStoreyMutateRequired) {
1957                                         ec.Emit (OpCodes.Ldftn, delegate_method);
1958                                 } else {
1959                                         TypeSpec t = storey.Instance.Type;
1960                                         ec.Emit (OpCodes.Ldftn, TypeBuilder.GetMethod (t.GetMetaInfo (), (MethodInfo) delegate_method.GetMetaInfo ()));
1961                                 }
1962                         } else {
1963                                 if (delegate_method.IsGeneric) {
1964                                         TypeParameterSpec[] tparams;
1965                                         var sm = ec.CurrentAnonymousMethod == null ? null : ec.CurrentAnonymousMethod.Storey as StateMachine;
1966                                         if (sm != null && sm.OriginalTypeParameters != null) {
1967                                                 tparams = sm.CurrentTypeParameters.Types;
1968                                         } else {
1969                                                 tparams = method.TypeParameters;
1970                                         }
1971
1972                                         delegate_method = delegate_method.MakeGenericMethod (ec.MemberContext, tparams);
1973                                 }
1974
1975                                 ec.Emit (OpCodes.Ldftn, delegate_method);
1976                         }
1977
1978                         var constructor_method = Delegate.GetConstructor (type);
1979                         ec.Emit (OpCodes.Newobj, constructor_method);
1980
1981                         if (am_cache != null) {
1982                                 ec.Emit (OpCodes.Stsfld, am_cache.Spec);
1983                                 ec.MarkLabel (l_initialized);
1984                                 ec.Emit (OpCodes.Ldsfld, am_cache.Spec);
1985                         }
1986                 }
1987
1988                 public override void EmitStatement (EmitContext ec)
1989                 {
1990                         throw new NotImplementedException ();
1991                 }
1992
1993                 //
1994                 // Look for the best storey for this anonymous method
1995                 //
1996                 AnonymousMethodStorey FindBestMethodStorey ()
1997                 {
1998                         //
1999                         // Use the nearest parent block which has a storey
2000                         //
2001                         for (Block b = Block.Parent; b != null; b = b.Parent) {
2002                                 AnonymousMethodStorey s = b.Explicit.AnonymousMethodStorey;
2003                                 if (s != null)
2004                                         return s;
2005                         }
2006                                         
2007                         return null;
2008                 }
2009
2010                 public override string GetSignatureForError ()
2011                 {
2012                         return type.GetSignatureForError ();
2013                 }
2014         }
2015
2016         //
2017         // Anonymous type container
2018         //
2019         public class AnonymousTypeClass : CompilerGeneratedContainer
2020         {
2021                 public const string ClassNamePrefix = "<>__AnonType";
2022                 public const string SignatureForError = "anonymous type";
2023                 
2024                 readonly IList<AnonymousTypeParameter> parameters;
2025
2026                 private AnonymousTypeClass (ModuleContainer parent, MemberName name, IList<AnonymousTypeParameter> parameters, Location loc)
2027                         : base (parent, name, parent.Evaluator != null ? Modifiers.PUBLIC : Modifiers.INTERNAL)
2028                 {
2029                         this.parameters = parameters;
2030                 }
2031
2032                 public static AnonymousTypeClass Create (TypeContainer parent, IList<AnonymousTypeParameter> parameters, Location loc)
2033                 {
2034                         string name = ClassNamePrefix + parent.Module.CounterAnonymousTypes++;
2035
2036                         ParametersCompiled all_parameters;
2037                         TypeParameters tparams = null;
2038                         SimpleName[] t_args;
2039
2040                         if (parameters.Count == 0) {
2041                                 all_parameters = ParametersCompiled.EmptyReadOnlyParameters;
2042                                 t_args = null;
2043                         } else {
2044                                 t_args = new SimpleName[parameters.Count];
2045                                 tparams = new TypeParameters ();
2046                                 Parameter[] ctor_params = new Parameter[parameters.Count];
2047                                 for (int i = 0; i < parameters.Count; ++i) {
2048                                         AnonymousTypeParameter p = parameters[i];
2049                                         for (int ii = 0; ii < i; ++ii) {
2050                                                 if (parameters[ii].Name == p.Name) {
2051                                                         parent.Compiler.Report.Error (833, parameters[ii].Location,
2052                                                                 "`{0}': An anonymous type cannot have multiple properties with the same name",
2053                                                                         p.Name);
2054
2055                                                         p = new AnonymousTypeParameter (null, "$" + i.ToString (), p.Location);
2056                                                         parameters[i] = p;
2057                                                         break;
2058                                                 }
2059                                         }
2060
2061                                         t_args[i] = new SimpleName ("<" + p.Name + ">__T", p.Location);
2062                                         tparams.Add (new TypeParameter (i, new MemberName (t_args[i].Name, p.Location), null, null, Variance.None));
2063                                         ctor_params[i] = new Parameter (t_args[i], p.Name, Parameter.Modifier.NONE, null, p.Location);
2064                                 }
2065
2066                                 all_parameters = new ParametersCompiled (ctor_params);
2067                         }
2068
2069                         //
2070                         // Create generic anonymous type host with generic arguments
2071                         // named upon properties names
2072                         //
2073                         AnonymousTypeClass a_type = new AnonymousTypeClass (parent.Module, new MemberName (name, tparams, loc), parameters, loc);
2074
2075                         Constructor c = new Constructor (a_type, name, Modifiers.PUBLIC | Modifiers.DEBUGGER_HIDDEN,
2076                                 null, all_parameters, loc);
2077                         c.Block = new ToplevelBlock (parent.Module.Compiler, c.ParameterInfo, loc);
2078
2079                         // 
2080                         // Create fields and constructor body with field initialization
2081                         //
2082                         bool error = false;
2083                         for (int i = 0; i < parameters.Count; ++i) {
2084                                 AnonymousTypeParameter p = parameters [i];
2085
2086                                 Field f = new Field (a_type, t_args [i], Modifiers.PRIVATE | Modifiers.READONLY | Modifiers.DEBUGGER_HIDDEN,
2087                                         new MemberName ("<" + p.Name + ">", p.Location), null);
2088
2089                                 if (!a_type.AddField (f)) {
2090                                         error = true;
2091                                         continue;
2092                                 }
2093
2094                                 c.Block.AddStatement (new StatementExpression (
2095                                         new SimpleAssign (new MemberAccess (new This (p.Location), f.Name),
2096                                                 c.Block.GetParameterReference (i, p.Location))));
2097
2098                                 ToplevelBlock get_block = new ToplevelBlock (parent.Module.Compiler, p.Location);
2099                                 get_block.AddStatement (new Return (
2100                                         new MemberAccess (new This (p.Location), f.Name), p.Location));
2101
2102                                 Property prop = new Property (a_type, t_args [i], Modifiers.PUBLIC,
2103                                         new MemberName (p.Name, p.Location), null);
2104                                 prop.Get = new Property.GetMethod (prop, 0, null, p.Location);
2105                                 prop.Get.Block = get_block;
2106                                 a_type.AddMember (prop);
2107                         }
2108
2109                         if (error)
2110                                 return null;
2111
2112                         a_type.AddConstructor (c);
2113                         return a_type;
2114                 }
2115                 
2116                 protected override bool DoDefineMembers ()
2117                 {
2118                         if (!base.DoDefineMembers ())
2119                                 return false;
2120
2121                         Location loc = Location;
2122
2123                         var equals_parameters = ParametersCompiled.CreateFullyResolved (
2124                                 new Parameter (new TypeExpression (Compiler.BuiltinTypes.Object, loc), "obj", 0, null, loc), Compiler.BuiltinTypes.Object);
2125
2126                         Method equals = new Method (this, new TypeExpression (Compiler.BuiltinTypes.Bool, loc),
2127                                 Modifiers.PUBLIC | Modifiers.OVERRIDE | Modifiers.DEBUGGER_HIDDEN, new MemberName ("Equals", loc),
2128                                 equals_parameters, null);
2129
2130                         equals_parameters[0].Resolve (equals, 0);
2131
2132                         Method tostring = new Method (this, new TypeExpression (Compiler.BuiltinTypes.String, loc),
2133                                 Modifiers.PUBLIC | Modifiers.OVERRIDE | Modifiers.DEBUGGER_HIDDEN, new MemberName ("ToString", loc),
2134                                 ParametersCompiled.EmptyReadOnlyParameters, null);
2135
2136                         ToplevelBlock equals_block = new ToplevelBlock (Compiler, equals.ParameterInfo, loc);
2137
2138                         TypeExpr current_type;
2139                         if (CurrentTypeParameters != null) {
2140                                 var targs = new TypeArguments ();
2141                                 for (int i = 0; i < CurrentTypeParameters.Count; ++i) {
2142                                         targs.Add (new TypeParameterExpr (CurrentTypeParameters[i], Location));
2143                                 }
2144
2145                                 current_type = new GenericTypeExpr (Definition, targs, loc);
2146                         } else {
2147                                 current_type = new TypeExpression (Definition, loc);
2148                         }
2149
2150                         var li_other = LocalVariable.CreateCompilerGenerated (CurrentType, equals_block, loc);
2151                         equals_block.AddStatement (new BlockVariable (new TypeExpression (li_other.Type, loc), li_other));
2152                         var other_variable = new LocalVariableReference (li_other, loc);
2153
2154                         MemberAccess system_collections_generic = new MemberAccess (new MemberAccess (
2155                                 new QualifiedAliasMember ("global", "System", loc), "Collections", loc), "Generic", loc);
2156
2157                         Expression rs_equals = null;
2158                         Expression string_concat = new StringConstant (Compiler.BuiltinTypes, "{", loc);
2159                         Expression rs_hashcode = new IntConstant (Compiler.BuiltinTypes, -2128831035, loc);
2160                         for (int i = 0; i < parameters.Count; ++i) {
2161                                 var p = parameters [i];
2162                                 var f = (Field) Members [i * 2];
2163
2164                                 MemberAccess equality_comparer = new MemberAccess (new MemberAccess (
2165                                         system_collections_generic, "EqualityComparer",
2166                                                 new TypeArguments (new SimpleName (CurrentTypeParameters [i].Name, loc)), loc),
2167                                                 "Default", loc);
2168
2169                                 Arguments arguments_equal = new Arguments (2);
2170                                 arguments_equal.Add (new Argument (new MemberAccess (new This (f.Location), f.Name)));
2171                                 arguments_equal.Add (new Argument (new MemberAccess (other_variable, f.Name)));
2172
2173                                 Expression field_equal = new Invocation (new MemberAccess (equality_comparer,
2174                                         "Equals", loc), arguments_equal);
2175
2176                                 Arguments arguments_hashcode = new Arguments (1);
2177                                 arguments_hashcode.Add (new Argument (new MemberAccess (new This (f.Location), f.Name)));
2178                                 Expression field_hashcode = new Invocation (new MemberAccess (equality_comparer,
2179                                         "GetHashCode", loc), arguments_hashcode);
2180
2181                                 IntConstant FNV_prime = new IntConstant (Compiler.BuiltinTypes, 16777619, loc);                         
2182                                 rs_hashcode = new Binary (Binary.Operator.Multiply,
2183                                         new Binary (Binary.Operator.ExclusiveOr, rs_hashcode, field_hashcode),
2184                                         FNV_prime);
2185
2186                                 Expression field_to_string = new Conditional (new BooleanExpression (new Binary (Binary.Operator.Inequality,
2187                                         new MemberAccess (new This (f.Location), f.Name), new NullLiteral (loc))),
2188                                         new Invocation (new MemberAccess (
2189                                                 new MemberAccess (new This (f.Location), f.Name), "ToString"), null),
2190                                         new StringConstant (Compiler.BuiltinTypes, string.Empty, loc), loc);
2191
2192                                 if (rs_equals == null) {
2193                                         rs_equals = field_equal;
2194                                         string_concat = new Binary (Binary.Operator.Addition,
2195                                                 string_concat,
2196                                                 new Binary (Binary.Operator.Addition,
2197                                                         new StringConstant (Compiler.BuiltinTypes, " " + p.Name + " = ", loc),
2198                                                         field_to_string));
2199                                         continue;
2200                                 }
2201
2202                                 //
2203                                 // Implementation of ToString () body using string concatenation
2204                                 //                              
2205                                 string_concat = new Binary (Binary.Operator.Addition,
2206                                         new Binary (Binary.Operator.Addition,
2207                                                 string_concat,
2208                                                 new StringConstant (Compiler.BuiltinTypes, ", " + p.Name + " = ", loc)),
2209                                         field_to_string);
2210
2211                                 rs_equals = new Binary (Binary.Operator.LogicalAnd, rs_equals, field_equal);
2212                         }
2213
2214                         string_concat = new Binary (Binary.Operator.Addition,
2215                                 string_concat,
2216                                 new StringConstant (Compiler.BuiltinTypes, " }", loc));
2217
2218                         //
2219                         // Equals (object obj) override
2220                         //              
2221                         var other_variable_assign = new TemporaryVariableReference (li_other, loc);
2222                         equals_block.AddStatement (new StatementExpression (
2223                                 new SimpleAssign (other_variable_assign,
2224                                         new As (equals_block.GetParameterReference (0, loc),
2225                                                 current_type, loc), loc)));
2226
2227                         Expression equals_test = new Binary (Binary.Operator.Inequality, other_variable, new NullLiteral (loc));
2228                         if (rs_equals != null)
2229                                 equals_test = new Binary (Binary.Operator.LogicalAnd, equals_test, rs_equals);
2230                         equals_block.AddStatement (new Return (equals_test, loc));
2231
2232                         equals.Block = equals_block;
2233                         equals.Define ();
2234                         Members.Add (equals);
2235
2236                         //
2237                         // GetHashCode () override
2238                         //
2239                         Method hashcode = new Method (this, new TypeExpression (Compiler.BuiltinTypes.Int, loc),
2240                                 Modifiers.PUBLIC | Modifiers.OVERRIDE | Modifiers.DEBUGGER_HIDDEN,
2241                                 new MemberName ("GetHashCode", loc),
2242                                 ParametersCompiled.EmptyReadOnlyParameters, null);
2243
2244                         //
2245                         // Modified FNV with good avalanche behavior and uniform
2246                         // distribution with larger hash sizes.
2247                         //
2248                         // const int FNV_prime = 16777619;
2249                         // int hash = (int) 2166136261;
2250                         // foreach (int d in data)
2251                         //     hash = (hash ^ d) * FNV_prime;
2252                         // hash += hash << 13;
2253                         // hash ^= hash >> 7;
2254                         // hash += hash << 3;
2255                         // hash ^= hash >> 17;
2256                         // hash += hash << 5;
2257
2258                         ToplevelBlock hashcode_top = new ToplevelBlock (Compiler, loc);
2259                         Block hashcode_block = new Block (hashcode_top, loc, loc);
2260                         hashcode_top.AddStatement (new Unchecked (hashcode_block, loc));
2261
2262                         var li_hash = LocalVariable.CreateCompilerGenerated (Compiler.BuiltinTypes.Int, hashcode_top, loc);
2263                         hashcode_block.AddStatement (new BlockVariable (new TypeExpression (li_hash.Type, loc), li_hash));
2264                         LocalVariableReference hash_variable_assign = new LocalVariableReference (li_hash, loc);
2265                         hashcode_block.AddStatement (new StatementExpression (
2266                                 new SimpleAssign (hash_variable_assign, rs_hashcode)));
2267
2268                         var hash_variable = new LocalVariableReference (li_hash, loc);
2269                         hashcode_block.AddStatement (new StatementExpression (
2270                                 new CompoundAssign (Binary.Operator.Addition, hash_variable,
2271                                         new Binary (Binary.Operator.LeftShift, hash_variable, new IntConstant (Compiler.BuiltinTypes, 13, loc)))));
2272                         hashcode_block.AddStatement (new StatementExpression (
2273                                 new CompoundAssign (Binary.Operator.ExclusiveOr, hash_variable,
2274                                         new Binary (Binary.Operator.RightShift, hash_variable, new IntConstant (Compiler.BuiltinTypes, 7, loc)))));
2275                         hashcode_block.AddStatement (new StatementExpression (
2276                                 new CompoundAssign (Binary.Operator.Addition, hash_variable,
2277                                         new Binary (Binary.Operator.LeftShift, hash_variable, new IntConstant (Compiler.BuiltinTypes, 3, loc)))));
2278                         hashcode_block.AddStatement (new StatementExpression (
2279                                 new CompoundAssign (Binary.Operator.ExclusiveOr, hash_variable,
2280                                         new Binary (Binary.Operator.RightShift, hash_variable, new IntConstant (Compiler.BuiltinTypes, 17, loc)))));
2281                         hashcode_block.AddStatement (new StatementExpression (
2282                                 new CompoundAssign (Binary.Operator.Addition, hash_variable,
2283                                         new Binary (Binary.Operator.LeftShift, hash_variable, new IntConstant (Compiler.BuiltinTypes, 5, loc)))));
2284
2285                         hashcode_block.AddStatement (new Return (hash_variable, loc));
2286                         hashcode.Block = hashcode_top;
2287                         hashcode.Define ();
2288                         Members.Add (hashcode);
2289
2290                         //
2291                         // ToString () override
2292                         //
2293
2294                         ToplevelBlock tostring_block = new ToplevelBlock (Compiler, loc);
2295                         tostring_block.AddStatement (new Return (string_concat, loc));
2296                         tostring.Block = tostring_block;
2297                         tostring.Define ();
2298                         Members.Add (tostring);
2299
2300                         return true;
2301                 }
2302
2303                 public override string GetSignatureForError ()
2304                 {
2305                         return SignatureForError;
2306                 }
2307
2308                 public override CompilationSourceFile GetCompilationSourceFile ()
2309                 {
2310                         return null;
2311                 }
2312
2313                 public IList<AnonymousTypeParameter> Parameters {
2314                         get {
2315                                 return parameters;
2316                         }
2317                 }
2318         }
2319 }