Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

70 lines
2.5 KiB
C#

//
// 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;
}
}
}