Merge pull request #1931 from kasthack/system.web-fixes
[mono.git] / mcs / ilasm / codegen / MethodRef.cs
1 //
2 // Mono.ILASM.MethodRef
3 //
4 // Author(s):
5 //  Jackson Harper (Jackson@LatitudeGeo.com)
6 //
7 // (C) 2003 Jackson Harper, All rights reserved
8 //
9
10
11 using System;
12 using System.Collections;
13
14 namespace Mono.ILASM {
15
16         public class MethodRef : BaseMethodRef {
17
18                 public MethodRef (TypeRef owner, PEAPI.CallConv call_conv,
19                         BaseTypeRef ret_type, string name, BaseTypeRef[] param, int gen_param_count)
20                         : base (owner, call_conv, ret_type, name, param, gen_param_count)
21                 {
22                 }
23
24                 public override void Resolve (CodeGen code_gen)
25                 {
26                         if (is_resolved)
27                                 return;
28
29                         owner.Resolve (code_gen);
30
31                         TypeDef owner_def = code_gen.TypeManager[owner.FullName];
32                         if (owner_def == null)
33                                 Report.Error ("Reference to undefined class '" + owner.FullName + "'");
34
35                         if ((call_conv & PEAPI.CallConv.Vararg) == 0) {
36                                 peapi_method = owner_def.ResolveMethod (ret_type, call_conv, name, 
37                                         param, gen_param_count, code_gen);
38                         } else {
39                                 ArrayList opt_list = new ArrayList ();
40                                 bool in_opt = false;
41                                 foreach (BaseTypeRef type in param) {
42                                         if (type is SentinelTypeRef) {
43                                                 in_opt = true;
44                                         } else if (in_opt) {
45                                                 type.Resolve (code_gen);
46                                                 opt_list.Add (type.PeapiType);
47                                         }
48                                 }
49                                 peapi_method = owner_def.ResolveVarargMethod (
50                                                 ret_type, call_conv, name, param, gen_param_count,
51                                                 (PEAPI.Type[]) opt_list.ToArray (typeof (PEAPI.Type)),
52                                                 code_gen);
53                         }
54
55                         is_resolved = true;
56
57                 }
58
59         }
60
61 }
62