Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/ilasm/codegen/MethodRef.cs')
-rw-r--r--mcs/ilasm/codegen/MethodRef.cs69
1 files changed, 69 insertions, 0 deletions
diff --git a/mcs/ilasm/codegen/MethodRef.cs b/mcs/ilasm/codegen/MethodRef.cs
new file mode 100644
index 00000000000..5c0553febf0
--- /dev/null
+++ b/mcs/ilasm/codegen/MethodRef.cs
@@ -0,0 +1,69 @@
+//
+// 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;
+
+ }
+
+ }
+
+}
+