**** Merged r41289 from MCS ****
[mono.git] / mcs / gmcs / 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 //
8 // Licensed under the terms of the GNU GPL
9 //
10 // (C) 2001 Ximian, Inc (http://www.ximian.com)
11 //
12 //
13
14 using System;
15 using System.Collections;
16 using System.Reflection;
17 using System.Reflection.Emit;
18 using System.Text;
19
20 namespace Mono.CSharp {
21
22         /// <summary>
23         ///   Holds Delegates
24         /// </summary>
25         public class Delegate : DeclSpace {
26                 public Expression ReturnType;
27                 public Parameters      Parameters;
28
29                 public ConstructorBuilder ConstructorBuilder;
30                 public MethodBuilder      InvokeBuilder;
31                 public MethodBuilder      BeginInvokeBuilder;
32                 public MethodBuilder      EndInvokeBuilder;
33                 
34                 Type [] param_types;
35                 Type ret_type;
36
37                 static string[] attribute_targets = new string [] { "type", "return" };
38                 
39                 Expression instance_expr;
40                 MethodBase delegate_method;
41                 ReturnParameter return_attributes;
42         
43                 const int AllowedModifiers =
44                         Modifiers.NEW |
45                         Modifiers.PUBLIC |
46                         Modifiers.PROTECTED |
47                         Modifiers.INTERNAL |
48                         Modifiers.UNSAFE |
49                         Modifiers.PRIVATE;
50
51                 public Delegate (NamespaceEntry ns, TypeContainer parent, Expression type,
52                                  int mod_flags, MemberName name, Parameters param_list,
53                                  Attributes attrs, Location l)
54                         : base (ns, parent, name, attrs, l)
55
56                 {
57                         this.ReturnType = type;
58                         ModFlags        = Modifiers.Check (AllowedModifiers, mod_flags,
59                                                            IsTopLevel ? Modifiers.INTERNAL :
60                                                            Modifiers.PRIVATE, l);
61                         Parameters      = param_list;
62                 }
63
64                 public override void ApplyAttributeBuilder(Attribute a, CustomAttributeBuilder cb)
65                 {
66                         if (a.Target == AttributeTargets.ReturnValue) {
67                                 if (return_attributes == null)
68                                         return_attributes = new ReturnParameter (InvokeBuilder, Location);
69
70                                 return_attributes.ApplyAttributeBuilder (a, cb);
71                                 return;
72                         }
73
74                         base.ApplyAttributeBuilder (a, cb);
75                 }
76
77                 public override TypeBuilder DefineType ()
78                 {
79                         if (TypeBuilder != null)
80                                 return TypeBuilder;
81
82                         ec = new EmitContext (this, this, Location, null, null, ModFlags, false);
83
84                         if (IsGeneric) {
85                                 foreach (TypeParameter type_param in TypeParameters)
86                                         if (!type_param.Resolve (this))
87                                                 return null;
88                         }
89                         
90                         TypeAttributes attr = Modifiers.TypeAttr (ModFlags, IsTopLevel) |
91                                 TypeAttributes.Class | TypeAttributes.Sealed;
92
93                         if (TypeManager.multicast_delegate_type == null && !RootContext.StdLib) {
94                                 TypeExpr expr = new TypeLookupExpression ("System.MulticastDelegate");
95                                 TypeManager.multicast_delegate_type = expr.ResolveType (ec);
96                         }
97
98                         if (TypeManager.multicast_delegate_type == null)
99                                 Report.Error (-100, Location, "Internal error: delegate used before " +
100                                               "System.MulticastDelegate is resolved.  This can only " +
101                                               "happen during corlib compilation, when using a delegate " +
102                                               "in any of the `core' classes.  See bug #72015 for details.");
103
104                         if (IsTopLevel) {
105                                 if (TypeManager.NamespaceClash (Name, Location))
106                                         return null;
107                                 
108                                 ModuleBuilder builder = CodeGen.Module.Builder;
109
110                                 TypeBuilder = builder.DefineType (
111                                         Name, attr, TypeManager.multicast_delegate_type);
112                         } else {
113                                 TypeBuilder builder = Parent.TypeBuilder;
114
115                                 string name = Name.Substring (1 + Name.LastIndexOf ('.'));
116                                 TypeBuilder = builder.DefineNestedType (
117                                         name, attr, TypeManager.multicast_delegate_type);
118                         }
119
120                         TypeManager.AddDelegateType (Name, TypeBuilder, this);
121
122                         if (IsGeneric) {
123                                 string[] param_names = new string [TypeParameters.Length];
124                                 for (int i = 0; i < TypeParameters.Length; i++)
125                                         param_names [i] = TypeParameters [i].Name;
126
127                                 GenericTypeParameterBuilder[] gen_params;
128                                 gen_params = TypeBuilder.DefineGenericParameters (param_names);
129
130                                 int offset = CountTypeParameters - CurrentTypeParameters.Length;
131                                 for (int i = offset; i < gen_params.Length; i++)
132                                         CurrentTypeParameters [i - offset].Define (gen_params [i]);
133
134                                 foreach (TypeParameter type_param in CurrentTypeParameters) {
135                                         if (!type_param.Resolve (this))
136                                                 return null;
137                                 }
138
139                                 for (int i = offset; i < gen_params.Length; i++)
140                                         CurrentTypeParameters [i - offset].DefineConstraints ();
141
142                                 TypeExpr current = new ConstructedType (Name, TypeParameters, Location);
143                                 current = current.ResolveAsTypeTerminal (ec);
144                                 if (current == null)
145                                         return null;
146
147                                 CurrentType = current.Type;
148                         }
149
150                         return TypeBuilder;
151                 }
152
153                 public override bool DefineMembers (TypeContainer container)
154                 {
155                         return true;
156                 }
157
158                 public override bool Define ()
159                 {
160                         MethodAttributes mattr;
161                         int i;
162
163                         if (IsGeneric) {
164                                 foreach (TypeParameter type_param in TypeParameters)
165                                         type_param.DefineType (ec);
166                         }
167
168                         if (ec == null)
169                                 throw new InternalErrorException ("Define called before DefineType?");
170
171                         // FIXME: POSSIBLY make this static, as it is always constant
172                         //
173                         Type [] const_arg_types = new Type [2];
174                         const_arg_types [0] = TypeManager.object_type;
175                         const_arg_types [1] = TypeManager.intptr_type;
176
177                         mattr = MethodAttributes.RTSpecialName | MethodAttributes.SpecialName |
178                                 MethodAttributes.HideBySig | MethodAttributes.Public;
179
180                         ConstructorBuilder = TypeBuilder.DefineConstructor (mattr,
181                                                                             CallingConventions.Standard,
182                                                                             const_arg_types);
183
184                         ConstructorBuilder.DefineParameter (1, ParameterAttributes.None, "object");
185                         ConstructorBuilder.DefineParameter (2, ParameterAttributes.None, "method");
186                         //
187                         // HACK because System.Reflection.Emit is lame
188                         //
189                         //
190                         // FIXME: POSSIBLY make these static, as they are always the same
191                         Parameter [] fixed_pars = new Parameter [2];
192                         fixed_pars [0] = new Parameter (TypeManager.system_object_expr, "object",
193                                                         Parameter.Modifier.NONE, null);
194                         fixed_pars [1] = new Parameter (TypeManager.system_intptr_expr, "method", 
195                                                         Parameter.Modifier.NONE, null);
196                         Parameters const_parameters = new Parameters (fixed_pars, null, Location);
197                         
198                         TypeManager.RegisterMethod (
199                                 ConstructorBuilder,
200                                 new InternalParameters (const_arg_types, const_parameters),
201                                 const_arg_types);
202                                 
203                         
204                         ConstructorBuilder.SetImplementationFlags (MethodImplAttributes.Runtime);
205
206                         //
207                         // Here the various methods like Invoke, BeginInvoke etc are defined
208                         //
209                         // First, call the `out of band' special method for
210                         // defining recursively any types we need:
211                         
212                         if (!Parameters.ComputeAndDefineParameterTypes (ec))
213                                 return false;
214                         
215                         param_types = Parameters.GetParameterInfo (ec);
216                         if (param_types == null)
217                                 return false;
218
219                         //
220                         // Invoke method
221                         //
222
223                         // Check accessibility
224                         foreach (Type partype in param_types){
225                                 if (!Parent.AsAccessible (partype, ModFlags)) {
226                                         Report.Error (59, Location,
227                                                       "Inconsistent accessibility: parameter type `" +
228                                                       TypeManager.CSharpName (partype) + "` is less " +
229                                                       "accessible than delegate `" + Name + "'");
230                                         return false;
231                                 }
232                                 if (partype.IsPointer && !UnsafeOK (Parent))
233                                         return false;
234                         }
235                         
236                         ReturnType = ReturnType.ResolveAsTypeTerminal (ec);
237                         if (ReturnType == null)
238                             return false;
239                         
240                         ret_type = ReturnType.Type;
241                         if (ret_type == null)
242                                 return false;
243
244                         if (!Parent.AsAccessible (ret_type, ModFlags)) {
245                                 Report.Error (58, Location,
246                                               "Inconsistent accessibility: return type `" +
247                                               TypeManager.CSharpName (ret_type) + "` is less " +
248                                               "accessible than delegate `" + Name + "'");
249                                 return false;
250                         }
251
252                         if (ret_type.IsPointer && !UnsafeOK (Parent))
253                                 return false;
254
255                         if (RootContext.StdLib && (ret_type == TypeManager.arg_iterator_type || ret_type == TypeManager.typed_reference_type)) {
256                                 Method.Error1599 (Location, ret_type);
257                                 return false;
258                         }
259
260                         //
261                         // We don't have to check any others because they are all
262                         // guaranteed to be accessible - they are standard types.
263                         //
264                         
265                         CallingConventions cc = Parameters.GetCallingConvention ();
266
267                         mattr = MethodAttributes.Public | MethodAttributes.HideBySig | MethodAttributes.Virtual;
268
269                         InvokeBuilder = TypeBuilder.DefineMethod ("Invoke", 
270                                                                   mattr,                     
271                                                                   cc,
272                                                                   ret_type,                  
273                                                                   param_types);
274
275                         //
276                         // Define parameters, and count out/ref parameters
277                         //
278                         int out_params = 0;
279                         i = 0;
280                         if (Parameters.FixedParameters != null){
281                                 int top = Parameters.FixedParameters.Length;
282                                 Parameter p;
283                                 
284                                 for (; i < top; i++) {
285                                         p = Parameters.FixedParameters [i];
286                                         p.DefineParameter (ec, InvokeBuilder, null, i + 1, Location);
287
288                                         if ((p.ModFlags & Parameter.Modifier.ISBYREF) != 0)
289                                                 out_params++;
290                                 }
291                         }
292                         if (Parameters.ArrayParameter != null){
293                                 Parameter p = Parameters.ArrayParameter;
294                                 p.DefineParameter (ec, InvokeBuilder, null, i + 1, Location);
295                         }
296                         
297                         InvokeBuilder.SetImplementationFlags (MethodImplAttributes.Runtime);
298
299                         TypeManager.RegisterMethod (InvokeBuilder,
300                                                     new InternalParameters (param_types, Parameters),
301                                                     param_types);
302
303                         //
304                         // BeginInvoke
305                         //
306                         int params_num = param_types.Length;
307                         Type [] async_param_types = new Type [params_num + 2];
308
309                         param_types.CopyTo (async_param_types, 0);
310
311                         async_param_types [params_num] = TypeManager.asynccallback_type;
312                         async_param_types [params_num + 1] = TypeManager.object_type;
313
314                         mattr = MethodAttributes.Public | MethodAttributes.HideBySig |
315                                 MethodAttributes.Virtual | MethodAttributes.NewSlot;
316                         
317                         BeginInvokeBuilder = TypeBuilder.DefineMethod ("BeginInvoke",
318                                                                        mattr,
319                                                                        cc,
320                                                                        TypeManager.iasyncresult_type,
321                                                                        async_param_types);
322
323                         i = 0;
324                         if (Parameters.FixedParameters != null){
325                                 int top = Parameters.FixedParameters.Length;
326                                 Parameter p;
327                                 
328                                 for (i = 0 ; i < top; i++) {
329                                         p = Parameters.FixedParameters [i];
330
331                                         p.DefineParameter (ec, BeginInvokeBuilder, null, i + 1, Location);
332                                 }
333                         }
334                         if (Parameters.ArrayParameter != null){
335                                 Parameter p = Parameters.ArrayParameter;
336                                 p.DefineParameter (ec, BeginInvokeBuilder, null, i + 1, Location);
337
338                                 i++;
339                         }
340
341                         BeginInvokeBuilder.DefineParameter (i + 1, ParameterAttributes.None, "callback");
342                         BeginInvokeBuilder.DefineParameter (i + 2, ParameterAttributes.None, "object");
343                         
344                         BeginInvokeBuilder.SetImplementationFlags (MethodImplAttributes.Runtime);
345
346                         Parameter [] async_params = new Parameter [params_num + 2];
347                         int n = 0;
348                         if (Parameters.FixedParameters != null){
349                                 Parameters.FixedParameters.CopyTo (async_params, 0);
350                                 n = Parameters.FixedParameters.Length;
351                         }
352                         if (Parameters.ArrayParameter != null)
353                                 async_params [n] = Parameters.ArrayParameter;
354                         
355                         async_params [params_num] = new Parameter (
356                                 TypeManager.system_asynccallback_expr, "callback",
357                                                                    Parameter.Modifier.NONE, null);
358                         async_params [params_num + 1] = new Parameter (
359                                 TypeManager.system_object_expr, "object",
360                                                                    Parameter.Modifier.NONE, null);
361
362                         Parameters async_parameters = new Parameters (async_params, null, Location);
363                         async_parameters.ComputeAndDefineParameterTypes (ec);
364                         
365                         TypeManager.RegisterMethod (BeginInvokeBuilder,
366                                                     new InternalParameters (async_param_types, async_parameters),
367                                                     async_param_types);
368
369                         //
370                         // EndInvoke is a bit more interesting, all the parameters labeled as
371                         // out or ref have to be duplicated here.
372                         //
373                         
374                         Type [] end_param_types = new Type [out_params + 1];
375                         Parameter [] end_params = new Parameter [out_params + 1];
376                         int param = 0; 
377                         if (out_params > 0){
378                                 int top = Parameters.FixedParameters.Length;
379                                 for (i = 0; i < top; i++){
380                                         Parameter p = Parameters.FixedParameters [i];
381                                         if ((p.ModFlags & Parameter.Modifier.ISBYREF) == 0)
382                                                 continue;
383
384                                         end_param_types [param] = param_types [i];
385                                         end_params [param] = p;
386                                         param++;
387                                 }
388                         }
389                         end_param_types [out_params] = TypeManager.iasyncresult_type;
390                         end_params [out_params] = new Parameter (TypeManager.system_iasyncresult_expr, "result", Parameter.Modifier.NONE, null);
391
392                         //
393                         // Create method, define parameters, register parameters with type system
394                         //
395                         EndInvokeBuilder = TypeBuilder.DefineMethod ("EndInvoke", mattr, cc, ret_type, end_param_types);
396                         EndInvokeBuilder.SetImplementationFlags (MethodImplAttributes.Runtime);
397
398                         //
399                         // EndInvoke: Label the parameters
400                         //
401                         EndInvokeBuilder.DefineParameter (out_params + 1, ParameterAttributes.None, "result");
402                         for (i = 0; i < end_params.Length-1; i++){
403                                 EndInvokeBuilder.DefineParameter (i + 1, end_params [i].Attributes, end_params [i].Name);
404                         }
405
406                         Parameters end_parameters = new Parameters (end_params, null, Location);
407                         end_parameters.ComputeAndDefineParameterTypes (ec);
408
409                         TypeManager.RegisterMethod (
410                                 EndInvokeBuilder,
411                                 new InternalParameters (end_param_types, end_parameters),
412                                 end_param_types);
413
414                         return true;
415                 }
416
417                 public override void Emit ()
418                 {
419                         if (OptAttributes != null) {
420                                 Parameters.LabelParameters (ec, InvokeBuilder, Location);
421                                 OptAttributes.Emit (ec, this);
422                         }
423
424                         base.Emit ();
425                 }
426
427                 public override string[] ValidAttributeTargets {
428                         get {
429                                 return attribute_targets;
430                         }
431                 }
432
433                 //TODO: duplicate
434                 protected override bool VerifyClsCompliance (DeclSpace ds)
435                 {
436                         if (!base.VerifyClsCompliance (ds)) {
437                                 return false;
438                         }
439
440                         AttributeTester.AreParametersCompliant (Parameters.FixedParameters, Location);
441
442                         if (!AttributeTester.IsClsCompliant (ReturnType.Type)) {
443                                 Report.Error (3002, Location, "Return type of '{0}' is not CLS-compliant", GetSignatureForError ());
444                         }
445                         return true;
446                 }
447
448                 //
449                 // Returns the MethodBase for "Invoke" from a delegate type, this is used
450                 // to extract the signature of a delegate.
451                 //
452                 public static MethodGroupExpr GetInvokeMethod (EmitContext ec, Type delegate_type,
453                                                        Location loc)
454                 {
455                         Expression ml = Expression.MemberLookup (
456                                 ec, delegate_type, "Invoke", loc);
457
458                         MethodGroupExpr mg = ml as MethodGroupExpr;
459                         if (mg == null) {
460                                 Report.Error (-100, loc, "Internal error: could not find Invoke method!");
461                                 return null;
462                         }
463
464                         return mg;
465                 }
466                 
467                 /// <summary>
468                 ///  Verifies whether the method in question is compatible with the delegate
469                 ///  Returns the method itself if okay and null if not.
470                 /// </summary>
471                 public static MethodBase VerifyMethod (EmitContext ec, Type delegate_type, MethodBase mb,
472                                                        Location loc)
473                 {
474                         MethodGroupExpr mg = GetInvokeMethod (ec, delegate_type, loc);
475                         if (mg == null)
476                                 return null;
477
478                         MethodBase invoke_mb = mg.Methods [0];
479                         ParameterData invoke_pd = TypeManager.GetParameterData (invoke_mb);
480
481                         if (!mg.HasTypeArguments &&
482                             !TypeManager.InferTypeArguments (ec, invoke_pd, ref mb))
483                                 return null;
484
485                         ParameterData pd = TypeManager.GetParameterData (mb);
486
487                         if (invoke_pd.Count != pd.Count)
488                                 return null;
489
490                         for (int i = pd.Count; i > 0; ) {
491                                 i--;
492
493                                 Type invoke_pd_type = invoke_pd.ParameterType (i);
494                                 Type pd_type = pd.ParameterType (i);
495                                 Parameter.Modifier invoke_pd_type_mod = invoke_pd.ParameterModifier (i);
496                                 Parameter.Modifier pd_type_mod = pd.ParameterModifier (i);
497
498                                 if (invoke_pd_type == pd_type &&
499                                     invoke_pd_type_mod == pd_type_mod)
500                                         continue;
501                                 
502                                 if (invoke_pd_type.IsSubclassOf (pd_type) && 
503                                                 invoke_pd_type_mod == pd_type_mod)
504                                         if (RootContext.Version == LanguageVersion.ISO_1) {
505                                                 Report.FeatureIsNotStandardized (loc, "contravariance");
506                                                 return null;
507                                         } else
508                                                 continue;
509                                         
510                                 return null;
511                         }
512
513                         Type invoke_mb_retval = ((MethodInfo) invoke_mb).ReturnType;
514                         Type mb_retval = ((MethodInfo) mb).ReturnType;
515                         if (invoke_mb_retval == mb_retval)
516                                 return mb;
517                         
518                         if (mb_retval.IsSubclassOf (invoke_mb_retval))
519                                 if (RootContext.Version == LanguageVersion.ISO_1) {
520                                         Report.FeatureIsNotStandardized (loc, "covariance");
521                                         return null;
522                                 }
523                                 else
524                                         return mb;
525                         
526                         return null;
527                 }
528
529                 // <summary>
530                 //  Verifies whether the invocation arguments are compatible with the
531                 //  delegate's target method
532                 // </summary>
533                 public static bool VerifyApplicability (EmitContext ec, Type delegate_type,
534                                                         ArrayList args, Location loc)
535                 {
536                         int arg_count;
537
538                         if (args == null)
539                                 arg_count = 0;
540                         else
541                                 arg_count = args.Count;
542
543                         Expression ml = Expression.MemberLookup (
544                                 ec, delegate_type, "Invoke", loc);
545
546                         MethodGroupExpr me = ml as MethodGroupExpr;
547                         if (me == null) {
548                                 Report.Error (-100, loc, "Internal error: could not find Invoke method!" + delegate_type);
549                                 return false;
550                         }
551                         
552                         MethodBase mb = me.Methods [0];
553                         ParameterData pd = TypeManager.GetParameterData (mb);
554
555                         int pd_count = pd.Count;
556
557                         bool params_method = (pd_count != 0) &&
558                                 (pd.ParameterModifier (pd_count - 1) == Parameter.Modifier.PARAMS);
559
560                         bool is_params_applicable = false;
561                         bool is_applicable = Invocation.IsApplicable (ec, me, args, arg_count, ref mb);
562
563                         if (!is_applicable && params_method &&
564                             Invocation.IsParamsMethodApplicable (ec, me, args, arg_count, ref mb))
565                                 is_applicable = is_params_applicable = true;
566
567                         if (!is_applicable && !params_method && arg_count != pd_count) {
568                                 Report.Error (1593, loc,
569                                               "Delegate '{0}' does not take {1} arguments",
570                                               delegate_type.ToString (), arg_count);
571                                 return false;
572                         }
573
574                         return Invocation.VerifyArgumentsCompat (
575                                         ec, args, arg_count, mb, 
576                                         is_params_applicable || (!is_applicable && params_method),
577                                         delegate_type, false, loc);
578                 }
579                 
580                 /// <summary>
581                 ///  Verifies whether the delegate in question is compatible with this one in
582                 ///  order to determine if instantiation from the same is possible.
583                 /// </summary>
584                 public static bool VerifyDelegate (EmitContext ec, Type delegate_type, Type probe_type, Location loc)
585                 {
586                         Expression ml = Expression.MemberLookup (
587                                 ec, delegate_type, "Invoke", loc);
588                         
589                         if (!(ml is MethodGroupExpr)) {
590                                 Report.Error (-100, loc, "Internal error: could not find Invoke method!");
591                                 return false;
592                         }
593                         
594                         MethodBase mb = ((MethodGroupExpr) ml).Methods [0];
595                         ParameterData pd = TypeManager.GetParameterData (mb);
596
597                         Expression probe_ml = Expression.MemberLookup (
598                                 ec, delegate_type, "Invoke", loc);
599                         
600                         if (!(probe_ml is MethodGroupExpr)) {
601                                 Report.Error (-100, loc, "Internal error: could not find Invoke method!");
602                                 return false;
603                         }
604                         
605                         MethodBase probe_mb = ((MethodGroupExpr) probe_ml).Methods [0];
606                         ParameterData probe_pd = TypeManager.GetParameterData (probe_mb);
607                         
608                         if (((MethodInfo) mb).ReturnType != ((MethodInfo) probe_mb).ReturnType)
609                                 return false;
610
611                         if (pd.Count != probe_pd.Count)
612                                 return false;
613
614                         for (int i = pd.Count; i > 0; ) {
615                                 i--;
616
617                                 if (pd.ParameterType (i) != probe_pd.ParameterType (i) ||
618                                     pd.ParameterModifier (i) != probe_pd.ParameterModifier (i))
619                                         return false;
620                         }
621                         
622                         return true;
623                 }
624                 
625                 public static string FullDelegateDesc (Type del_type, MethodBase mb, ParameterData pd)
626                 {
627                         StringBuilder sb = new StringBuilder (TypeManager.CSharpName (((MethodInfo) mb).ReturnType));
628                         
629                         sb.Append (" " + del_type.ToString ());
630                         sb.Append (" (");
631
632                         int length = pd.Count;
633                         
634                         for (int i = length; i > 0; ) {
635                                 i--;
636
637                                 sb.Append (pd.ParameterDesc (length - i - 1));
638                                 if (i != 0)
639                                         sb.Append (", ");
640                         }
641                         
642                         sb.Append (")");
643                         return sb.ToString ();
644                         
645                 }
646                 
647                 // Hack around System.Reflection as found everywhere else
648                 public override MemberList FindMembers (MemberTypes mt, BindingFlags bf,
649                                                         MemberFilter filter, object criteria)
650                 {
651                         ArrayList members = new ArrayList ();
652
653                         if ((mt & MemberTypes.Method) != 0) {
654                                 if (ConstructorBuilder != null)
655                                 if (filter (ConstructorBuilder, criteria))
656                                         members.Add (ConstructorBuilder);
657
658                                 if (InvokeBuilder != null)
659                                 if (filter (InvokeBuilder, criteria))
660                                         members.Add (InvokeBuilder);
661
662                                 if (BeginInvokeBuilder != null)
663                                 if (filter (BeginInvokeBuilder, criteria))
664                                         members.Add (BeginInvokeBuilder);
665
666                                 if (EndInvokeBuilder != null)
667                                 if (filter (EndInvokeBuilder, criteria))
668                                         members.Add (EndInvokeBuilder);
669                         }
670
671                         return new MemberList (members);
672                 }
673
674                 public override MemberCache MemberCache {
675                         get {
676                                 return null;
677                         }
678                 }
679
680                 public Expression InstanceExpression {
681                         get {
682                                 return instance_expr;
683                         }
684                         set {
685                                 instance_expr = value;
686                         }
687                 }
688
689                 public MethodBase TargetMethod {
690                         get {
691                                 return delegate_method;
692                         }
693                         set {
694                                 delegate_method = value;
695                         }
696                 }
697
698                 public Type TargetReturnType {
699                         get {
700                                 return ret_type;
701                         }
702                 }
703
704                 public Type [] ParameterTypes {
705                         get {
706                                 return param_types;
707                         }
708                 }
709
710                 public override AttributeTargets AttributeTargets {
711                         get {
712                                 return AttributeTargets.Delegate;
713                         }
714                 }
715
716                 //
717                 //   Represents header string for documentation comment.
718                 //
719                 public override string DocCommentHeader {
720                         get { return "T:"; }
721                 }
722
723                 protected override void VerifyObsoleteAttribute()
724                 {
725                         CheckUsageOfObsoleteAttribute (ret_type);
726
727                         foreach (Type type in param_types) {
728                                 CheckUsageOfObsoleteAttribute (type);
729                         }
730                 }
731         }
732
733         //
734         // Base class for `NewDelegate' and `ImplicitDelegateCreation'
735         //
736         public abstract class DelegateCreation : Expression {
737                 protected MethodBase constructor_method;
738                 protected MethodBase delegate_method;
739                 protected MethodGroupExpr method_group;
740                 protected Expression delegate_instance_expression;
741
742                 public DelegateCreation () {}
743
744                 public static void Error_NoMatchingMethodForDelegate (EmitContext ec, MethodGroupExpr mg, Type type, Location loc)
745                 {
746                         string method_desc;
747
748                         MethodBase candidate = mg.Methods [0];
749                         if (mg.Methods.Length > 1)
750                                 method_desc = candidate.Name;
751                         else
752                                 method_desc = Invocation.FullMethodDesc (candidate);
753
754                         Expression invoke_method = Expression.MemberLookup (
755                                 ec, type, "Invoke", MemberTypes.Method,
756                                 Expression.AllBindingFlags, loc);
757                         MethodBase method = ((MethodGroupExpr) invoke_method).Methods [0];
758                         ParameterData param = TypeManager.GetParameterData (method);
759                         string delegate_desc = Delegate.FullDelegateDesc (type, method, param);
760
761                         if (!mg.HasTypeArguments &&
762                             !TypeManager.InferTypeArguments (ec, param, ref candidate))
763                                 Report.Error (411, loc, "The type arguments for " +
764                                               "method `{0}' cannot be infered from " +
765                                               "the usage. Try specifying the type " +
766                                               "arguments explicitly.", method_desc);
767                         else
768                                 Report.Error (123, loc, "Method '{0}' does not " +
769                                               "match delegate '{1}'", method_desc,
770                                               delegate_desc);
771                 }
772                 
773                 public override void Emit (EmitContext ec)
774                 {
775                         if (delegate_instance_expression == null || delegate_method.IsStatic)
776                                 ec.ig.Emit (OpCodes.Ldnull);
777                         else
778                                 delegate_instance_expression.Emit (ec);
779                         
780                         if (delegate_method.IsVirtual && !method_group.IsBase) {
781                                 ec.ig.Emit (OpCodes.Dup);
782                                 ec.ig.Emit (OpCodes.Ldvirtftn, (MethodInfo) delegate_method);
783                         } else
784                                 ec.ig.Emit (OpCodes.Ldftn, (MethodInfo) delegate_method);
785                         ec.ig.Emit (OpCodes.Newobj, (ConstructorInfo) constructor_method);
786                 }
787
788                 protected bool ResolveConstructorMethod (EmitContext ec)
789                 {
790                         Expression ml = Expression.MemberLookup (
791                                 ec, type, ".ctor", loc);
792
793                         if (!(ml is MethodGroupExpr)) {
794                                 Report.Error (-100, loc, "Internal error: Could not find delegate constructor!");
795                                 return false;
796                         }
797
798                         constructor_method = ((MethodGroupExpr) ml).Methods [0];
799                         return true;
800                 }
801
802                 protected Expression ResolveMethodGroupExpr (EmitContext ec, MethodGroupExpr mg)
803                 {
804                         foreach (MethodInfo mi in mg.Methods){
805                                 delegate_method  = Delegate.VerifyMethod (ec, type, mi, loc);
806                                 
807                                 if (delegate_method != null)
808                                         break;
809                         }
810                         
811                         if (delegate_method == null) {
812                                 Error_NoMatchingMethodForDelegate (ec, mg, type, loc);
813                                 return null;
814                         }
815                         
816                         //
817                         // Check safe/unsafe of the delegate
818                         //
819                         if (!ec.InUnsafe){
820                                 ParameterData param = TypeManager.GetParameterData (delegate_method);
821                                 int count = param.Count;
822                                 
823                                 for (int i = 0; i < count; i++){
824                                         if (param.ParameterType (i).IsPointer){
825                                                 Expression.UnsafeError (loc);
826                                                 return null;
827                                         }
828                                 }
829                         }
830                                                 
831                         //TODO: implement caching when performance will be low
832                         IMethodData md = TypeManager.GetMethod (delegate_method);
833                         if (md == null) {
834                                 if (System.Attribute.GetCustomAttribute (delegate_method, TypeManager.conditional_attribute_type) != null) {
835                                         Report.Error (1618, loc, "Cannot create delegate with '{0}' because it has a Conditional attribute", TypeManager.CSharpSignature (delegate_method));
836                                 }
837                         } else {
838                                 if (md.OptAttributes != null && md.OptAttributes.Search (TypeManager.conditional_attribute_type, ec) != null) {
839                                         Report.Error (1618, loc, "Cannot create delegate with '{0}' because it has a Conditional attribute", TypeManager.CSharpSignature (delegate_method));
840                                 }
841                         }
842                         
843                         if (mg.InstanceExpression != null)
844                                 delegate_instance_expression = mg.InstanceExpression.Resolve (ec);
845                         else if (ec.IsStatic) {
846                                 if (!delegate_method.IsStatic) {
847                                         Report.Error (120, loc,
848                                                       "An object reference is required for the non-static method " +
849                                                       delegate_method.Name);
850                                         return null;
851                                 }
852                                 delegate_instance_expression = null;
853                         } else
854                                 delegate_instance_expression = ec.GetThis (loc);
855
856                         if (delegate_instance_expression != null && delegate_instance_expression.Type.IsValueType)
857                                 delegate_instance_expression = new BoxedCast (delegate_instance_expression);
858
859                         method_group = mg;
860                         eclass = ExprClass.Value;
861                         return this;
862                 }
863         }
864
865         //
866         // Created from the conversion code
867         //
868         public class ImplicitDelegateCreation : DelegateCreation {
869
870                 ImplicitDelegateCreation (Type t, Location l)
871                 {
872                         type = t;
873                         loc = l;
874                 }
875
876                 public override Expression DoResolve (EmitContext ec)
877                 {
878                         return this;
879                 }
880                 
881                 static public Expression Create (EmitContext ec, MethodGroupExpr mge, Type target_type, Location loc)
882                 {
883                         ImplicitDelegateCreation d = new ImplicitDelegateCreation (target_type, loc);
884                         if (d.ResolveConstructorMethod (ec))
885                                 return d.ResolveMethodGroupExpr (ec, mge);
886                         else
887                                 return null;
888                 }
889         }
890         
891         //
892         // A delegate-creation-expression, invoked from the `New' class 
893         //
894         public class NewDelegate : DelegateCreation {
895                 public ArrayList Arguments;
896
897                 //
898                 // This constructor is invoked from the `New' expression
899                 //
900                 public NewDelegate (Type type, ArrayList Arguments, Location loc)
901                 {
902                         this.type = type;
903                         this.Arguments = Arguments;
904                         this.loc  = loc; 
905                 }
906
907                 public override Expression DoResolve (EmitContext ec)
908                 {
909                         if (Arguments == null || Arguments.Count != 1) {
910                                 Report.Error (149, loc,
911                                               "Method name expected");
912                                 return null;
913                         }
914
915                         if (!ResolveConstructorMethod (ec))
916                                 return null;
917
918                         Argument a = (Argument) Arguments [0];
919                         
920                         if (!a.ResolveMethodGroup (ec, loc))
921                                 return null;
922                         
923                         Expression e = a.Expr;
924
925                         if (e is AnonymousMethod && RootContext.Version != LanguageVersion.ISO_1)
926                                 return ((AnonymousMethod) e).Compatible (ec, type, false);
927
928                         MethodGroupExpr mg = e as MethodGroupExpr;
929                         if (mg != null)
930                                 return ResolveMethodGroupExpr (ec, mg);
931
932                         Type e_type = e.Type;
933
934                         if (!TypeManager.IsDelegateType (e_type)) {
935                                 Report.Error (149, loc, "Method name expected");
936                                 return null;
937                         }
938
939                         method_group = Expression.MemberLookup (
940                                 ec, type, "Invoke", MemberTypes.Method,
941                                 Expression.AllBindingFlags, loc) as MethodGroupExpr;
942
943                         if (method_group == null) {
944                                 Report.Error (-200, loc, "Internal error ! Could not find Invoke method!");
945                                 return null;
946                         }
947
948                         // This is what MS' compiler reports. We could always choose
949                         // to be more verbose and actually give delegate-level specifics
950                         if (!Delegate.VerifyDelegate (ec, type, e_type, loc)) {
951                                 Report.Error (29, loc, "Cannot implicitly convert type '" + e_type + "' " +
952                                               "to type '" + type + "'");
953                                 return null;
954                         }
955                                 
956                         delegate_instance_expression = e;
957                         delegate_method = method_group.Methods [0];
958                         
959                         eclass = ExprClass.Value;
960                         return this;
961                 }
962         }
963
964         public class DelegateInvocation : ExpressionStatement {
965
966                 public Expression InstanceExpr;
967                 public ArrayList  Arguments;
968
969                 MethodBase method;
970                 
971                 public DelegateInvocation (Expression instance_expr, ArrayList args, Location loc)
972                 {
973                         this.InstanceExpr = instance_expr;
974                         this.Arguments = args;
975                         this.loc = loc;
976                 }
977
978                 public override Expression DoResolve (EmitContext ec)
979                 {
980                         if (InstanceExpr is EventExpr) {
981                                 
982                                 EventInfo ei = ((EventExpr) InstanceExpr).EventInfo;
983                                 
984                                 Expression ml = MemberLookup (
985                                         ec, ec.ContainerType, ei.Name,
986                                         MemberTypes.Event, AllBindingFlags | BindingFlags.DeclaredOnly, loc);
987
988                                 if (ml == null) {
989                                         //
990                                         // If this is the case, then the Event does not belong 
991                                         // to this Type and so, according to the spec
992                                         // cannot be accessed directly
993                                         //
994                                         // Note that target will not appear as an EventExpr
995                                         // in the case it is being referenced within the same type container;
996                                         // it will appear as a FieldExpr in that case.
997                                         //
998                                         
999                                         Assign.error70 (ei, loc);
1000                                         return null;
1001                                 }
1002                         }
1003                         
1004                         
1005                         Type del_type = InstanceExpr.Type;
1006                         if (del_type == null)
1007                                 return null;
1008                         
1009                         if (Arguments != null){
1010                                 foreach (Argument a in Arguments){
1011                                         if (!a.Resolve (ec, loc))
1012                                                 return null;
1013                                 }
1014                         }
1015                         
1016                         if (!Delegate.VerifyApplicability (ec, del_type, Arguments, loc))
1017                                 return null;
1018
1019                         Expression lookup = Expression.MemberLookup (ec, del_type, "Invoke", loc);
1020                         if (!(lookup is MethodGroupExpr)) {
1021                                 Report.Error (-100, loc, "Internal error: could not find Invoke method!");
1022                                 return null;
1023                         }
1024                         
1025                         method = ((MethodGroupExpr) lookup).Methods [0];
1026                         type = ((MethodInfo) method).ReturnType;
1027                         eclass = ExprClass.Value;
1028                         
1029                         return this;
1030                 }
1031
1032                 public override void Emit (EmitContext ec)
1033                 {
1034                         //
1035                         // Invocation on delegates call the virtual Invoke member
1036                         // so we are always `instance' calls
1037                         //
1038                         Invocation.EmitCall (ec, false, false, InstanceExpr, method, Arguments, loc);
1039                 }
1040
1041                 public override void EmitStatement (EmitContext ec)
1042                 {
1043                         Emit (ec);
1044                         // 
1045                         // Pop the return value if there is one
1046                         //
1047                         if (method is MethodInfo){
1048                                 if (((MethodInfo) method).ReturnType != TypeManager.void_type)
1049                                         ec.ig.Emit (OpCodes.Pop);
1050                         }
1051                 }
1052
1053         }
1054 }