-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathMethodRef.cs
More file actions
69 lines (53 loc) · 2.45 KB
/
Copy pathMethodRef.cs
File metadata and controls
69 lines (53 loc) · 2.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
//
// Mono.ILASM.MethodRef
//
// Author(s):
// Jackson Harper (Jackson@LatitudeGeo.com)
//
// (C) 2003 Jackson Harper, All rights reserved
//
using System;
using System.Collections;
namespace Mono.ILASM {
public class MethodRef : BaseMethodRef {
public MethodRef (TypeRef owner, PEAPI.CallConv call_conv,
BaseTypeRef ret_type, string name, BaseTypeRef[] param, int gen_param_count)
: base (owner, call_conv, ret_type, name, param, gen_param_count)
{
}
public override void Resolve (CodeGen code_gen)
{
if (is_resolved)
return;
owner.Resolve (code_gen);
TypeDef owner_def = code_gen.TypeManager[owner.FullName];
if (owner_def == null)
Report.Error ("Reference to undefined class '" + owner.FullName + "'");
string write_name;
if (name == "<init>")
write_name = ".ctor";
else
write_name = name;
if ((call_conv & PEAPI.CallConv.Vararg) == 0) {
peapi_method = owner_def.ResolveMethod (ret_type, call_conv, name,
param, gen_param_count, code_gen);
} else {
ArrayList opt_list = new ArrayList ();
bool in_opt = false;
foreach (BaseTypeRef type in param) {
if (type is SentinelTypeRef) {
in_opt = true;
} else if (in_opt) {
type.Resolve (code_gen);
opt_list.Add (type.PeapiType);
}
}
peapi_method = owner_def.ResolveVarargMethod (
ret_type, call_conv, name, param, gen_param_count,
(PEAPI.Type[]) opt_list.ToArray (typeof (PEAPI.Type)),
code_gen);
}
is_resolved = true;
}
}
}