Rewrite of core coder & decoder functions to fix several bugs and limitations, and...
[mono.git] / mcs / mcs / delegate.cs
1 //
2 // delegate.cs: Delegate Handler
3 //
4 // Authors:
5 //     Ravi Pratap (ravi@ximian.com)
6 //     Miguel de Icaza (miguel@ximian.com)
7 //     Marek Safar (marek.safar@gmail.com)
8 //
9 // Dual licensed under the terms of the MIT X11 or GNU GPL
10 //
11 // Copyright 2001 Ximian, Inc (http://www.ximian.com)
12 // Copyright 2003-2009 Novell, Inc (http://www.novell.com)
13 // Copyright 2011 Xamarin Inc
14 //
15
16 using System;
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         //
29         // Delegate container implementation
30         //
31         public class Delegate : TypeDefinition, IParametersMember
32         {
33                 FullNamedExpression ReturnType;
34                 readonly ParametersCompiled parameters;
35
36                 Constructor Constructor;
37                 Method InvokeBuilder;
38                 Method BeginInvokeBuilder;
39                 Method EndInvokeBuilder;
40
41                 static readonly string[] attribute_targets = new string [] { "type", "return" };
42
43                 public static readonly string InvokeMethodName = "Invoke";
44                 
45                 Expression instance_expr;
46                 ReturnParameter return_attributes;
47
48                 const Modifiers MethodModifiers = Modifiers.PUBLIC | Modifiers.VIRTUAL;
49
50                 const Modifiers AllowedModifiers =
51                         Modifiers.NEW |
52                         Modifiers.PUBLIC |
53                         Modifiers.PROTECTED |
54                         Modifiers.INTERNAL |
55                         Modifiers.UNSAFE |
56                         Modifiers.PRIVATE;
57
58                 public Delegate (TypeContainer parent, FullNamedExpression type, Modifiers mod_flags, MemberName name, ParametersCompiled param_list,
59                                  Attributes attrs)
60                         : base (parent, name, attrs, MemberKind.Delegate)
61
62                 {
63                         this.ReturnType = type;
64                         ModFlags        = ModifiersExtensions.Check (AllowedModifiers, mod_flags,
65                                                            IsTopLevel ? Modifiers.INTERNAL :
66                                                            Modifiers.PRIVATE, name.Location, Report);
67                         parameters      = param_list;
68                         spec = new TypeSpec (Kind, null, this, null, ModFlags | Modifiers.SEALED);
69                 }
70
71                 #region Properties
72                 public TypeSpec MemberType {
73                         get {
74                                 return ReturnType.Type;
75                         }
76                 }
77
78                 public AParametersCollection Parameters {
79                         get {
80                                 return parameters;
81                         }
82                 }
83
84                 public FullNamedExpression TypExpression {
85                         get {
86                                 return ReturnType;
87                         }
88                 }
89
90                 #endregion
91
92                 public override void Accept (StructuralVisitor visitor)
93                 {
94                         visitor.Visit (this);
95                 }
96
97                 public override void ApplyAttributeBuilder (Attribute a, MethodSpec ctor, byte[] cdata, PredefinedAttributes pa)
98                 {
99                         if (a.Target == AttributeTargets.ReturnValue) {
100                                 if (return_attributes == null)
101                                         return_attributes = new ReturnParameter (this, InvokeBuilder.MethodBuilder, Location);
102
103                                 return_attributes.ApplyAttributeBuilder (a, ctor, cdata, pa);
104                                 return;
105                         }
106
107                         base.ApplyAttributeBuilder (a, ctor, cdata, pa);
108                 }
109
110                 public override AttributeTargets AttributeTargets {
111                         get {
112                                 return AttributeTargets.Delegate;
113                         }
114                 }
115
116                 protected override bool DoDefineMembers ()
117                 {
118                         var builtin_types = Compiler.BuiltinTypes;
119
120                         var ctor_parameters = ParametersCompiled.CreateFullyResolved (
121                                 new [] {
122                                         new Parameter (new TypeExpression (builtin_types.Object, Location), "object", Parameter.Modifier.NONE, null, Location),
123                                         new Parameter (new TypeExpression (builtin_types.IntPtr, Location), "method", Parameter.Modifier.NONE, null, Location)
124                                 },
125                                 new [] {
126                                         builtin_types.Object,
127                                         builtin_types.IntPtr
128                                 }
129                         );
130
131                         Constructor = new Constructor (this, Constructor.ConstructorName,
132                                 Modifiers.PUBLIC, null, ctor_parameters, Location);
133                         Constructor.Define ();
134
135                         //
136                         // Here the various methods like Invoke, BeginInvoke etc are defined
137                         //
138                         // First, call the `out of band' special method for
139                         // defining recursively any types we need:
140                         //
141                         var p = parameters;
142
143                         if (!p.Resolve (this))
144                                 return false;
145
146                         //
147                         // Invoke method
148                         //
149
150                         // Check accessibility
151                         foreach (var partype in p.Types) {
152                                 if (!IsAccessibleAs (partype)) {
153                                         Report.SymbolRelatedToPreviousError (partype);
154                                         Report.Error (59, Location,
155                                                 "Inconsistent accessibility: parameter type `{0}' is less accessible than delegate `{1}'",
156                                                 partype.GetSignatureForError (), GetSignatureForError ());
157                                 }
158                         }
159
160                         var ret_type = ReturnType.ResolveAsType (this);
161                         if (ret_type == null)
162                                 return false;
163
164                         //
165                         // We don't have to check any others because they are all
166                         // guaranteed to be accessible - they are standard types.
167                         //
168                         if (!IsAccessibleAs (ret_type)) {
169                                 Report.SymbolRelatedToPreviousError (ret_type);
170                                 Report.Error (58, Location,
171                                                   "Inconsistent accessibility: return type `" +
172                                                   ret_type.GetSignatureForError () + "' is less " +
173                                                   "accessible than delegate `" + GetSignatureForError () + "'");
174                                 return false;
175                         }
176
177                         CheckProtectedModifier ();
178
179                         if (Compiler.Settings.StdLib && ret_type.IsSpecialRuntimeType) {
180                                 Method.Error1599 (Location, ret_type, Report);
181                                 return false;
182                         }
183
184                         TypeManager.CheckTypeVariance (ret_type, Variance.Covariant, this);
185
186                         var resolved_rt = new TypeExpression (ret_type, Location);
187                         InvokeBuilder = new Method (this, resolved_rt, MethodModifiers, new MemberName (InvokeMethodName), p, null);
188                         InvokeBuilder.Define ();
189
190                         //
191                         // Don't emit async method for compiler generated delegates (e.g. dynamic site containers)
192                         //
193                         if (!IsCompilerGenerated) {
194                                 DefineAsyncMethods (Parameters.CallingConvention, resolved_rt);
195                         }
196
197                         return true;
198                 }
199
200                 void DefineAsyncMethods (CallingConventions cc, TypeExpression returnType)
201                 {
202                         var iasync_result = Module.PredefinedTypes.IAsyncResult;
203                         var async_callback = Module.PredefinedTypes.AsyncCallback;
204
205                         //
206                         // It's ok when async types don't exist, the delegate will have Invoke method only
207                         //
208                         if (!iasync_result.Define () || !async_callback.Define ())
209                                 return;
210
211                         //
212                         // BeginInvoke
213                         //
214                         ParametersCompiled async_parameters;
215                         if (Parameters.Count == 0) {
216                                 async_parameters = ParametersCompiled.EmptyReadOnlyParameters;
217                         } else {
218                                 var compiled = new Parameter[Parameters.Count];
219                                 for (int i = 0; i < compiled.Length; ++i) {
220                                         var p = parameters[i];
221                                         compiled[i] = new Parameter (new TypeExpression (parameters.Types[i], Location),
222                                                 p.Name,
223                                                 p.ModFlags & Parameter.Modifier.RefOutMask,
224                                                 p.OptAttributes == null ? null : p.OptAttributes.Clone (), Location);
225                                 }
226
227                                 async_parameters = new ParametersCompiled (compiled);
228                         }
229
230                         async_parameters = ParametersCompiled.MergeGenerated (Compiler, async_parameters, false,
231                                 new Parameter[] {
232                                         new Parameter (new TypeExpression (async_callback.TypeSpec, Location), "callback", Parameter.Modifier.NONE, null, Location),
233                                         new Parameter (new TypeExpression (Compiler.BuiltinTypes.Object, Location), "object", Parameter.Modifier.NONE, null, Location)
234                                 },
235                                 new [] {
236                                         async_callback.TypeSpec,
237                                         Compiler.BuiltinTypes.Object
238                                 }
239                         );
240
241                         BeginInvokeBuilder = new Method (this,
242                                 new TypeExpression (iasync_result.TypeSpec, Location), MethodModifiers,
243                                 new MemberName ("BeginInvoke"), async_parameters, null);
244                         BeginInvokeBuilder.Define ();
245
246                         //
247                         // EndInvoke is a bit more interesting, all the parameters labeled as
248                         // out or ref have to be duplicated here.
249                         //
250
251                         //
252                         // Define parameters, and count out/ref parameters
253                         //
254                         ParametersCompiled end_parameters;
255                         int out_params = 0;
256
257                         foreach (Parameter p in Parameters.FixedParameters) {
258                                 if ((p.ModFlags & Parameter.Modifier.RefOutMask) != 0)
259                                         ++out_params;
260                         }
261
262                         if (out_params > 0) {
263                                 Parameter[] end_params = new Parameter[out_params];
264
265                                 int param = 0;
266                                 for (int i = 0; i < Parameters.FixedParameters.Length; ++i) {
267                                         Parameter p = parameters [i];
268                                         if ((p.ModFlags & Parameter.Modifier.RefOutMask) == 0)
269                                                 continue;
270
271                                         end_params [param++] = new Parameter (new TypeExpression (p.Type, Location),
272                                                 p.Name,
273                                                 p.ModFlags & Parameter.Modifier.RefOutMask,
274                                                 p.OptAttributes == null ? null : p.OptAttributes.Clone (), Location);
275                                 }
276
277                                 end_parameters = new ParametersCompiled (end_params);
278                         } else {
279                                 end_parameters = ParametersCompiled.EmptyReadOnlyParameters;
280                         }
281
282                         end_parameters = ParametersCompiled.MergeGenerated (Compiler, end_parameters, false,
283                                 new Parameter (
284                                         new TypeExpression (iasync_result.TypeSpec, Location),
285                                         "result", Parameter.Modifier.NONE, null, Location),
286                                 iasync_result.TypeSpec);
287
288                         //
289                         // Create method, define parameters, register parameters with type system
290                         //
291                         EndInvokeBuilder = new Method (this, returnType, MethodModifiers, new MemberName ("EndInvoke"), end_parameters, null);
292                         EndInvokeBuilder.Define ();
293                 }
294
295                 public override void PrepareEmit ()
296                 {
297                         if (!Parameters.IsEmpty) {
298                                 parameters.ResolveDefaultValues (this);
299                         }
300                 }
301
302                 public override void Emit ()
303                 {
304                         base.Emit ();
305
306                         if (ReturnType.Type != null) {
307                                 if (ReturnType.Type.BuiltinType == BuiltinTypeSpec.Type.Dynamic) {
308                                         return_attributes = new ReturnParameter (this, InvokeBuilder.MethodBuilder, Location);
309                                         Module.PredefinedAttributes.Dynamic.EmitAttribute (return_attributes.Builder);
310                                 } else if (ReturnType.Type.HasDynamicElement) {
311                                         return_attributes = new ReturnParameter (this, InvokeBuilder.MethodBuilder, Location);
312                                         Module.PredefinedAttributes.Dynamic.EmitAttribute (return_attributes.Builder, ReturnType.Type, Location);
313                                 }
314
315                                 ConstraintChecker.Check (this, ReturnType.Type, ReturnType.Location);
316                         }
317
318                         Constructor.ParameterInfo.ApplyAttributes (this, Constructor.ConstructorBuilder);
319                         Constructor.ConstructorBuilder.SetImplementationFlags (MethodImplAttributes.Runtime);
320
321                         parameters.CheckConstraints (this);
322                         parameters.ApplyAttributes (this, InvokeBuilder.MethodBuilder);
323                         InvokeBuilder.MethodBuilder.SetImplementationFlags (MethodImplAttributes.Runtime);
324
325                         if (BeginInvokeBuilder != null) {
326                                 BeginInvokeBuilder.ParameterInfo.ApplyAttributes (this, BeginInvokeBuilder.MethodBuilder);
327                                 EndInvokeBuilder.ParameterInfo.ApplyAttributes (this, EndInvokeBuilder.MethodBuilder);
328
329                                 BeginInvokeBuilder.MethodBuilder.SetImplementationFlags (MethodImplAttributes.Runtime);
330                                 EndInvokeBuilder.MethodBuilder.SetImplementationFlags (MethodImplAttributes.Runtime);
331                         }
332                 }
333
334                 protected override TypeSpec[] ResolveBaseTypes (out FullNamedExpression base_class)
335                 {
336                         base_type = Compiler.BuiltinTypes.MulticastDelegate;
337                         base_class = null;
338                         return null;
339                 }
340
341                 protected override TypeAttributes TypeAttr {
342                         get {
343                                 return base.TypeAttr | TypeAttributes.Class | TypeAttributes.Sealed;
344                         }
345                 }
346
347                 public override string[] ValidAttributeTargets {
348                         get {
349                                 return attribute_targets;
350                         }
351                 }
352
353                 //TODO: duplicate
354                 protected override bool VerifyClsCompliance ()
355                 {
356                         if (!base.VerifyClsCompliance ()) {
357                                 return false;
358                         }
359
360                         parameters.VerifyClsCompliance (this);
361
362                         if (!InvokeBuilder.MemberType.IsCLSCompliant ()) {
363                                 Report.Warning (3002, 1, Location, "Return type of `{0}' is not CLS-compliant",
364                                         GetSignatureForError ());
365                         }
366                         return true;
367                 }
368
369
370                 public static MethodSpec GetConstructor (TypeSpec delType)
371                 {
372                         var ctor = MemberCache.FindMember (delType, MemberFilter.Constructor (null), BindingRestriction.DeclaredOnly);
373                         return (MethodSpec) ctor;
374                 }
375
376                 //
377                 // Returns the "Invoke" from a delegate type
378                 //
379                 public static MethodSpec GetInvokeMethod (TypeSpec delType)
380                 {
381                         var invoke = MemberCache.FindMember (delType,
382                                 MemberFilter.Method (InvokeMethodName, 0, null, null),
383                                 BindingRestriction.DeclaredOnly);
384
385                         return (MethodSpec) invoke;
386                 }
387
388                 public static AParametersCollection GetParameters (TypeSpec delType)
389                 {
390                         var invoke_mb = GetInvokeMethod (delType);
391                         return invoke_mb.Parameters;
392                 }
393
394                 //
395                 // 15.2 Delegate compatibility
396                 //
397                 public static bool IsTypeCovariant (ResolveContext rc, TypeSpec a, TypeSpec b)
398                 {
399                         //
400                         // For each value parameter (a parameter with no ref or out modifier), an 
401                         // identity conversion or implicit reference conversion exists from the
402                         // parameter type in D to the corresponding parameter type in M
403                         //
404                         if (a == b)
405                                 return true;
406
407                         if (rc.Module.Compiler.Settings.Version == LanguageVersion.ISO_1)
408                                 return false;
409
410                         if (a.IsGenericParameter && b.IsGenericParameter)
411                                 return a == b;
412
413                         return Convert.ImplicitReferenceConversionExists (a, b);
414                 }
415
416                 public static string FullDelegateDesc (MethodSpec invoke_method)
417                 {
418                         return TypeManager.GetFullNameSignature (invoke_method).Replace (".Invoke", "");
419                 }
420                 
421                 public Expression InstanceExpression {
422                         get {
423                                 return instance_expr;
424                         }
425                         set {
426                                 instance_expr = value;
427                         }
428                 }
429         }
430
431         //
432         // Base class for `NewDelegate' and `ImplicitDelegateCreation'
433         //
434         public abstract class DelegateCreation : Expression, OverloadResolver.IErrorHandler
435         {
436                 protected MethodSpec constructor_method;
437                 protected MethodGroupExpr method_group;
438
439                 public bool AllowSpecialMethodsInvocation { get; set; }
440
441                 public override bool ContainsEmitWithAwait ()
442                 {
443                         return false;
444                 }
445
446                 public static Arguments CreateDelegateMethodArguments (ResolveContext rc, AParametersCollection pd, TypeSpec[] types, Location loc)
447                 {
448                         Arguments delegate_arguments = new Arguments (pd.Count);
449                         for (int i = 0; i < pd.Count; ++i) {
450                                 Argument.AType atype_modifier;
451                                 switch (pd.FixedParameters [i].ModFlags) {
452                                 case Parameter.Modifier.REF:
453                                         atype_modifier = Argument.AType.Ref;
454                                         break;
455                                 case Parameter.Modifier.OUT:
456                                         atype_modifier = Argument.AType.Out;
457                                         break;
458                                 default:
459                                         atype_modifier = 0;
460                                         break;
461                                 }
462
463                                 var ptype = types[i];
464                                 if (ptype.BuiltinType == BuiltinTypeSpec.Type.Dynamic)
465                                         ptype = rc.BuiltinTypes.Object;
466
467                                 delegate_arguments.Add (new Argument (new TypeExpression (ptype, loc), atype_modifier));
468                         }
469
470                         return delegate_arguments;
471                 }
472
473                 public override Expression CreateExpressionTree (ResolveContext ec)
474                 {
475                         MemberAccess ma = new MemberAccess (new MemberAccess (new QualifiedAliasMember ("global", "System", loc), "Delegate", loc), "CreateDelegate", loc);
476
477                         Arguments args = new Arguments (3);
478                         args.Add (new Argument (new TypeOf (type, loc)));
479
480                         if (method_group.InstanceExpression == null)
481                                 args.Add (new Argument (new NullLiteral (loc)));
482                         else
483                                 args.Add (new Argument (method_group.InstanceExpression));
484
485                         args.Add (new Argument (method_group.CreateExpressionTree (ec)));
486                         Expression e = new Invocation (ma, args).Resolve (ec);
487                         if (e == null)
488                                 return null;
489
490                         e = Convert.ExplicitConversion (ec, e, type, loc);
491                         if (e == null)
492                                 return null;
493
494                         return e.CreateExpressionTree (ec);
495                 }
496
497                 protected override Expression DoResolve (ResolveContext ec)
498                 {
499                         constructor_method = Delegate.GetConstructor (type);
500
501                         var invoke_method = Delegate.GetInvokeMethod (type);
502
503                         Arguments arguments = CreateDelegateMethodArguments (ec, invoke_method.Parameters, invoke_method.Parameters.Types, loc);
504                         method_group = method_group.OverloadResolve (ec, ref arguments, this, OverloadResolver.Restrictions.CovariantDelegate);
505                         if (method_group == null)
506                                 return null;
507
508                         var delegate_method = method_group.BestCandidate;
509                         
510                         if (delegate_method.DeclaringType.IsNullableType) {
511                                 ec.Report.Error (1728, loc, "Cannot create delegate from method `{0}' because it is a member of System.Nullable<T> type",
512                                         delegate_method.GetSignatureForError ());
513                                 return null;
514                         }               
515                         
516                         if (!AllowSpecialMethodsInvocation)
517                                 Invocation.IsSpecialMethodInvocation (ec, delegate_method, loc);
518
519                         ExtensionMethodGroupExpr emg = method_group as ExtensionMethodGroupExpr;
520                         if (emg != null) {
521                                 method_group.InstanceExpression = emg.ExtensionExpression;
522                                 TypeSpec e_type = emg.ExtensionExpression.Type;
523                                 if (TypeSpec.IsValueType (e_type)) {
524                                         ec.Report.Error (1113, loc, "Extension method `{0}' of value type `{1}' cannot be used to create delegates",
525                                                 delegate_method.GetSignatureForError (), e_type.GetSignatureForError ());
526                                 }
527                         }
528
529                         TypeSpec rt = delegate_method.ReturnType;
530                         if (rt.BuiltinType == BuiltinTypeSpec.Type.Dynamic)
531                                 rt = ec.BuiltinTypes.Object;
532
533                         if (!Delegate.IsTypeCovariant (ec, rt, invoke_method.ReturnType)) {
534                                 Expression ret_expr = new TypeExpression (delegate_method.ReturnType, loc);
535                                 Error_ConversionFailed (ec, delegate_method, ret_expr);
536                         }
537
538                         if (delegate_method.IsConditionallyExcluded (ec, loc)) {
539                                 ec.Report.SymbolRelatedToPreviousError (delegate_method);
540                                 MethodOrOperator m = delegate_method.MemberDefinition as MethodOrOperator;
541                                 if (m != null && m.IsPartialDefinition) {
542                                         ec.Report.Error (762, loc, "Cannot create delegate from partial method declaration `{0}'",
543                                                 delegate_method.GetSignatureForError ());
544                                 } else {
545                                         ec.Report.Error (1618, loc, "Cannot create delegate with `{0}' because it has a Conditional attribute",
546                                                 TypeManager.CSharpSignature (delegate_method));
547                                 }
548                         }
549
550                         var expr = method_group.InstanceExpression;
551                         if (expr != null && (expr.Type.IsGenericParameter || !TypeSpec.IsReferenceType (expr.Type)))
552                                 method_group.InstanceExpression = new BoxedCast (expr, ec.BuiltinTypes.Object);
553
554                         eclass = ExprClass.Value;
555                         return this;
556                 }
557                 
558                 public override void Emit (EmitContext ec)
559                 {
560                         if (method_group.InstanceExpression == null)
561                                 ec.EmitNull ();
562                         else
563                                 method_group.InstanceExpression.Emit (ec);
564
565                         var delegate_method = method_group.BestCandidate;
566
567                         // Any delegate must be sealed
568                         if (!delegate_method.DeclaringType.IsDelegate && delegate_method.IsVirtual && !method_group.IsBase) {
569                                 ec.Emit (OpCodes.Dup);
570                                 ec.Emit (OpCodes.Ldvirtftn, delegate_method);
571                         } else {
572                                 ec.Emit (OpCodes.Ldftn, delegate_method);
573                         }
574
575                         ec.Emit (OpCodes.Newobj, constructor_method);
576                 }
577
578                 void Error_ConversionFailed (ResolveContext ec, MethodSpec method, Expression return_type)
579                 {
580                         var invoke_method = Delegate.GetInvokeMethod (type);
581                         string member_name = method_group.InstanceExpression != null ?
582                                 Delegate.FullDelegateDesc (method) :
583                                 TypeManager.GetFullNameSignature (method);
584
585                         ec.Report.SymbolRelatedToPreviousError (type);
586                         ec.Report.SymbolRelatedToPreviousError (method);
587                         if (ec.Module.Compiler.Settings.Version == LanguageVersion.ISO_1) {
588                                 ec.Report.Error (410, loc, "A method or delegate `{0} {1}' parameters and return type must be same as delegate `{2} {3}' parameters and return type",
589                                         method.ReturnType.GetSignatureForError (), member_name,
590                                         invoke_method.ReturnType.GetSignatureForError (), Delegate.FullDelegateDesc (invoke_method));
591                                 return;
592                         }
593
594                         if (return_type == null) {
595                                 ec.Report.Error (123, loc, "A method or delegate `{0}' parameters do not match delegate `{1}' parameters",
596                                         member_name, Delegate.FullDelegateDesc (invoke_method));
597                                 return;
598                         }
599
600                         ec.Report.Error (407, loc, "A method or delegate `{0} {1}' return type does not match delegate `{2} {3}' return type",
601                                 return_type.GetSignatureForError (), member_name,
602                                 invoke_method.ReturnType.GetSignatureForError (), Delegate.FullDelegateDesc (invoke_method));
603                 }
604
605                 public static bool ImplicitStandardConversionExists (ResolveContext ec, MethodGroupExpr mg, TypeSpec target_type)
606                 {
607 //                      if (target_type == TypeManager.delegate_type || target_type == TypeManager.multicast_delegate_type)
608 //                              return false;
609
610                         var invoke = Delegate.GetInvokeMethod (target_type);
611
612                         Arguments arguments = CreateDelegateMethodArguments (ec, invoke.Parameters, invoke.Parameters.Types, mg.Location);
613                         return mg.OverloadResolve (ec, ref arguments, null, OverloadResolver.Restrictions.CovariantDelegate | OverloadResolver.Restrictions.ProbingOnly) != null;
614                 }
615
616                 #region IErrorHandler Members
617
618                 bool OverloadResolver.IErrorHandler.AmbiguousCandidates (ResolveContext ec, MemberSpec best, MemberSpec ambiguous)
619                 {
620                         return false;
621                 }
622
623                 bool OverloadResolver.IErrorHandler.ArgumentMismatch (ResolveContext rc, MemberSpec best, Argument arg, int index)
624                 {
625                         Error_ConversionFailed (rc, best as MethodSpec, null);
626                         return true;
627                 }
628
629                 bool OverloadResolver.IErrorHandler.NoArgumentMatch (ResolveContext rc, MemberSpec best)
630                 {
631                         Error_ConversionFailed (rc, best as MethodSpec, null);
632                         return true;
633                 }
634
635                 bool OverloadResolver.IErrorHandler.TypeInferenceFailed (ResolveContext rc, MemberSpec best)
636                 {
637                         return false;
638                 }
639
640                 #endregion
641         }
642
643         //
644         // Created from the conversion code
645         //
646         public class ImplicitDelegateCreation : DelegateCreation
647         {
648                 Field mg_cache;
649
650                 public ImplicitDelegateCreation (TypeSpec delegateType, MethodGroupExpr mg, Location loc)
651                 {
652                         type = delegateType;
653                         this.method_group = mg;
654                         this.loc = loc;
655                 }
656
657                 //
658                 // Returns true when type is MVAR or has MVAR reference
659                 //
660                 static bool ContainsMethodTypeParameter (TypeSpec type)
661                 {
662                         var tps = type as TypeParameterSpec;
663                         if (tps != null)
664                                 return tps.IsMethodOwned;
665
666                         var ec = type as ElementTypeSpec;
667                         if (ec != null)
668                                 return ContainsMethodTypeParameter (ec.Element);
669
670                         foreach (var t in type.TypeArguments) {
671                                 if (ContainsMethodTypeParameter (t)) {
672                                         return true;
673                                 }
674                         }
675
676                         return false;
677                 }
678
679                 protected override Expression DoResolve (ResolveContext ec)
680                 {
681                         var expr = base.DoResolve (ec);
682                         if (expr == null)
683                                 return null;
684
685                         if (ec.IsInProbingMode)
686                                 return expr;
687
688                         //
689                         // Cache any static delegate creation
690                         //
691                         if (method_group.InstanceExpression != null)
692                                 return expr;
693
694                         //
695                         // Cannot easily cache types with MVAR
696                         //
697                         if (ContainsMethodTypeParameter (type))
698                                 return expr;
699
700                         if (ContainsMethodTypeParameter (method_group.BestCandidate.DeclaringType))
701                                 return expr;
702
703                         //
704                         // Create type level cache for a delegate instance
705                         //
706                         var parent = ec.CurrentMemberDefinition.Parent.PartialContainer;
707                         int id = parent.MethodGroupsCounter++;
708
709                         mg_cache = new Field (parent, new TypeExpression (type, loc),
710                                 Modifiers.STATIC | Modifiers.PRIVATE | Modifiers.COMPILER_GENERATED,
711                                 new MemberName (CompilerGeneratedContainer.MakeName (null, "f", "mg$cache", id), loc), null);
712                         mg_cache.Define ();
713                         parent.AddField (mg_cache);
714
715                         return expr;
716                 }
717
718                 public override void Emit (EmitContext ec)
719                 {
720                         Label l_initialized = ec.DefineLabel ();
721
722                         if (mg_cache != null) {
723                                 ec.Emit (OpCodes.Ldsfld, mg_cache.Spec);
724                                 ec.Emit (OpCodes.Brtrue_S, l_initialized);
725                         }
726
727                         base.Emit (ec);
728
729                         if (mg_cache != null) {
730                                 ec.Emit (OpCodes.Stsfld, mg_cache.Spec);
731                                 ec.MarkLabel (l_initialized);
732                                 ec.Emit (OpCodes.Ldsfld, mg_cache.Spec);
733                         }
734                 }
735         }
736         
737         //
738         // A delegate-creation-expression, invoked from the `New' class 
739         //
740         public class NewDelegate : DelegateCreation
741         {
742                 public Arguments Arguments;
743
744                 //
745                 // This constructor is invoked from the `New' expression
746                 //
747                 public NewDelegate (TypeSpec type, Arguments Arguments, Location loc)
748                 {
749                         this.type = type;
750                         this.Arguments = Arguments;
751                         this.loc  = loc; 
752                 }
753
754                 protected override Expression DoResolve (ResolveContext ec)
755                 {
756                         if (Arguments == null || Arguments.Count != 1) {
757                                 ec.Report.Error (149, loc, "Method name expected");
758                                 return null;
759                         }
760
761                         Argument a = Arguments [0];
762                         if (!a.ResolveMethodGroup (ec))
763                                 return null;
764
765                         Expression e = a.Expr;
766
767                         AnonymousMethodExpression ame = e as AnonymousMethodExpression;
768                         if (ame != null && ec.Module.Compiler.Settings.Version != LanguageVersion.ISO_1) {
769                                 e = ame.Compatible (ec, type);
770                                 if (e == null)
771                                         return null;
772
773                                 return e.Resolve (ec);
774                         }
775
776                         method_group = e as MethodGroupExpr;
777                         if (method_group == null) {
778                                 if (e.Type.BuiltinType == BuiltinTypeSpec.Type.Dynamic) {
779                                         e = Convert.ImplicitConversionRequired (ec, e, type, loc);
780                                 } else if (!e.Type.IsDelegate) {
781                                         e.Error_UnexpectedKind (ec, ResolveFlags.MethodGroup | ResolveFlags.Type, loc);
782                                         return null;
783                                 }
784
785                                 //
786                                 // An argument is not a method but another delegate
787                                 //
788                                 method_group = new MethodGroupExpr (Delegate.GetInvokeMethod (e.Type), e.Type, loc);
789                                 method_group.InstanceExpression = e;
790                         }
791
792                         return base.DoResolve (ec);
793                 }
794         }
795
796         //
797         // Invocation converted to delegate Invoke call
798         //
799         class DelegateInvocation : ExpressionStatement
800         {
801                 readonly Expression InstanceExpr;
802                 Arguments arguments;
803                 MethodSpec method;
804                 
805                 public DelegateInvocation (Expression instance_expr, Arguments args, Location loc)
806                 {
807                         this.InstanceExpr = instance_expr;
808                         this.arguments = args;
809                         this.loc = loc;
810                 }
811
812                 public override bool ContainsEmitWithAwait ()
813                 {
814                         return InstanceExpr.ContainsEmitWithAwait () || (arguments != null && arguments.ContainsEmitWithAwait ());
815                 }
816                 
817                 public override Expression CreateExpressionTree (ResolveContext ec)
818                 {
819                         Arguments args = Arguments.CreateForExpressionTree (ec, this.arguments,
820                                 InstanceExpr.CreateExpressionTree (ec));
821
822                         return CreateExpressionFactoryCall (ec, "Invoke", args);
823                 }
824
825                 protected override Expression DoResolve (ResolveContext ec)
826                 {               
827                         TypeSpec del_type = InstanceExpr.Type;
828                         if (del_type == null)
829                                 return null;
830
831                         //
832                         // Do only core overload resolution the rest of the checks has been
833                         // done on primary expression
834                         //
835                         method = Delegate.GetInvokeMethod (del_type);
836                         var res = new OverloadResolver (new MemberSpec[] { method }, OverloadResolver.Restrictions.DelegateInvoke, loc);
837                         var valid = res.ResolveMember<MethodSpec> (ec, ref arguments);
838                         if (valid == null && !res.BestCandidateIsDynamic)
839                                 return null;
840
841                         type = method.ReturnType;
842                         eclass = ExprClass.Value;
843                         return this;
844                 }
845
846                 public override void Emit (EmitContext ec)
847                 {
848                         //
849                         // Invocation on delegates call the virtual Invoke member
850                         // so we are always `instance' calls
851                         //
852                         var call = new CallEmitter ();
853                         call.InstanceExpression = InstanceExpr;
854                         call.EmitPredefined (ec, method, arguments);
855                 }
856
857                 public override void EmitStatement (EmitContext ec)
858                 {
859                         Emit (ec);
860                         // 
861                         // Pop the return value if there is one
862                         //
863                         if (type.Kind != MemberKind.Void)
864                                 ec.Emit (OpCodes.Pop);
865                 }
866
867                 public override System.Linq.Expressions.Expression MakeExpression (BuilderContext ctx)
868                 {
869                         return Invocation.MakeExpression (ctx, InstanceExpr, method, arguments);
870                 }
871         }
872 }