2006-04-27 Jonathan Chambers <jonathan.chambers@ansys.com>
[mcs.git] / gmcs / typemanager.cs
blob4049a52eeca45a0849d0098699e4f721d70ef557
1 //
2 // typemanager.cs: C# type manager
3 //
4 // Author: Miguel de Icaza (miguel@gnu.org)
5 // Ravi Pratap (ravi@ximian.com)
6 // Marek Safar (marek.safar@seznam.cz)
7 //
8 // Licensed under the terms of the GNU GPL
9 //
10 // (C) 2001 Ximian, Inc (http://www.ximian.com)
15 // We will eventually remove the SIMPLE_SPEEDUP, and should never change
16 // the behavior of the compilation. This can be removed if we rework
17 // the code to get a list of namespaces available.
19 #define SIMPLE_SPEEDUP
21 using System;
22 using System.IO;
23 using System.Globalization;
24 using System.Collections;
25 using System.Reflection;
26 using System.Reflection.Emit;
27 using System.Text;
28 using System.Text.RegularExpressions;
29 using System.Runtime.CompilerServices;
30 using System.Diagnostics;
32 namespace Mono.CSharp {
34 public partial class TypeManager {
36 // A list of core types that the compiler requires or uses
38 static public Type object_type;
39 static public Type value_type;
40 static public Type string_type;
41 static public Type int32_type;
42 static public Type uint32_type;
43 static public Type int64_type;
44 static public Type uint64_type;
45 static public Type float_type;
46 static public Type double_type;
47 static public Type char_type;
48 static public Type char_ptr_type;
49 static public Type short_type;
50 static public Type decimal_type;
51 static public Type bool_type;
52 static public Type sbyte_type;
53 static public Type byte_type;
54 static public Type ushort_type;
55 static public Type enum_type;
56 static public Type delegate_type;
57 static public Type multicast_delegate_type;
58 static public Type void_type;
59 static public Type null_type;
60 static public Type enumeration_type;
61 static public Type array_type;
62 static public Type runtime_handle_type;
63 static public Type icloneable_type;
64 static public Type type_type;
65 static public Type ienumerator_type;
66 static public Type ienumerable_type;
67 static public Type idisposable_type;
68 static public Type iconvertible_type;
69 static public Type default_member_type;
70 static public Type iasyncresult_type;
71 static public Type asynccallback_type;
72 static public Type intptr_type;
73 static public Type monitor_type;
74 static public Type runtime_field_handle_type;
75 static public Type runtime_argument_handle_type;
76 static public Type attribute_type;
77 static public Type attribute_usage_type;
78 static public Type decimal_constant_attribute_type;
79 static public Type dllimport_type;
80 static public Type unverifiable_code_type;
81 static public Type methodimpl_attr_type;
82 static public Type marshal_as_attr_type;
83 static public Type param_array_type;
84 static public Type void_ptr_type;
85 static public Type indexer_name_type;
86 static public Type exception_type;
87 static public Type invalid_operation_exception_type;
88 static public Type not_supported_exception_type;
89 static public Type obsolete_attribute_type;
90 static public Type conditional_attribute_type;
91 static public Type in_attribute_type;
92 static public Type out_attribute_type;
93 static public Type default_parameter_value_attribute_type;
95 static public Type anonymous_method_type;
96 static public Type cls_compliant_attribute_type;
97 static public Type typed_reference_type;
98 static public Type arg_iterator_type;
99 static public Type mbr_type;
100 static public Type struct_layout_attribute_type;
101 static public Type field_offset_attribute_type;
102 static public Type security_attr_type;
103 static public Type required_attr_type;
104 static public Type guid_attr_type;
105 static public Type assembly_culture_attribute_type;
106 static public Type coclass_attr_type;
107 static public Type comimport_attr_type;
109 ///
110 /// .NET 2.0
112 static internal Type runtime_compatibility_attr_type;
113 static internal Type compiler_generated_attr_type;
114 static internal Type fixed_buffer_attr_type;
115 static internal Type default_charset_type;
116 static internal Type internals_visible_attr_type;
119 // Expressions representing the internal types. Used during declaration
120 // definition.
122 static public TypeExpr system_object_expr, system_string_expr;
123 static public TypeExpr system_boolean_expr, system_decimal_expr;
124 static public TypeExpr system_single_expr, system_double_expr;
125 static public TypeExpr system_sbyte_expr, system_byte_expr;
126 static public TypeExpr system_int16_expr, system_uint16_expr;
127 static public TypeExpr system_int32_expr, system_uint32_expr;
128 static public TypeExpr system_int64_expr, system_uint64_expr;
129 static public TypeExpr system_char_expr, system_void_expr;
130 static public TypeExpr system_asynccallback_expr;
131 static public TypeExpr system_iasyncresult_expr;
132 static public TypeExpr system_valuetype_expr;
133 static public TypeExpr system_intptr_expr;
136 // This is only used when compiling corlib
138 static public Type system_int32_type;
139 static public Type system_array_type;
140 static public Type system_type_type;
141 static public Type system_assemblybuilder_type;
142 static public MethodInfo system_int_array_get_length;
143 static public MethodInfo system_int_array_get_rank;
144 static public MethodInfo system_object_array_clone;
145 static public MethodInfo system_int_array_get_length_int;
146 static public MethodInfo system_int_array_get_lower_bound_int;
147 static public MethodInfo system_int_array_get_upper_bound_int;
148 static public MethodInfo system_void_array_copyto_array_int;
152 // Internal, not really used outside
154 static Type runtime_helpers_type;
157 // These methods are called by code generated by the compiler
159 static public MethodInfo string_concat_string_string;
160 static public MethodInfo string_concat_string_string_string;
161 static public MethodInfo string_concat_string_string_string_string;
162 static public MethodInfo string_concat_string_dot_dot_dot;
163 static public MethodInfo string_concat_object_object;
164 static public MethodInfo string_concat_object_object_object;
165 static public MethodInfo string_concat_object_dot_dot_dot;
166 static public MethodInfo string_isinterneted_string;
167 static public MethodInfo system_type_get_type_from_handle;
168 static public MethodInfo bool_movenext_void;
169 static public MethodInfo ienumerable_getenumerator_void;
170 static public MethodInfo void_reset_void;
171 static public MethodInfo void_dispose_void;
172 static public MethodInfo void_monitor_enter_object;
173 static public MethodInfo void_monitor_exit_object;
174 static public MethodInfo void_initializearray_array_fieldhandle;
175 static public MethodInfo int_getlength_int;
176 static public MethodInfo delegate_combine_delegate_delegate;
177 static public MethodInfo delegate_remove_delegate_delegate;
178 static public MethodInfo int_get_offset_to_string_data;
179 static public MethodInfo int_array_get_length;
180 static public MethodInfo int_array_get_rank;
181 static public MethodInfo object_array_clone;
182 static public MethodInfo int_array_get_length_int;
183 static public MethodInfo int_array_get_lower_bound_int;
184 static public MethodInfo int_array_get_upper_bound_int;
185 static public MethodInfo void_array_copyto_array_int;
186 static public PropertyInfo ienumerator_getcurrent;
189 // The attribute constructors.
191 static public ConstructorInfo object_ctor;
192 static private ConstructorInfo cons_param_array_attribute;
193 static public ConstructorInfo void_decimal_ctor_five_args;
194 static public ConstructorInfo void_decimal_ctor_int_arg;
195 static public ConstructorInfo unverifiable_code_ctor;
196 static public ConstructorInfo default_member_ctor;
197 static public ConstructorInfo decimal_constant_attribute_ctor;
198 static internal ConstructorInfo struct_layout_attribute_ctor;
199 static public ConstructorInfo field_offset_attribute_ctor;
202 /// A new in C# 2.0
203 ///
204 static internal CustomAttributeBuilder compiler_generated_attr;
205 static internal ConstructorInfo fixed_buffer_attr_ctor;
207 static PtrHashtable builder_to_declspace;
209 static PtrHashtable builder_to_member_cache;
211 // <remarks>
212 // Tracks the interfaces implemented by typebuilders. We only
213 // enter those who do implement or or more interfaces
214 // </remarks>
215 static PtrHashtable builder_to_ifaces;
217 // <remarks>
218 // Maps PropertyBuilder to a Type array that contains
219 // the arguments to the indexer
220 // </remarks>
221 static Hashtable indexer_arguments;
223 // <remarks>
224 // Maps a MethodBase to its ParameterData (either InternalParameters or ReflectionParameters)
225 // <remarks>
226 static Hashtable method_params;
228 // <remarks>
229 // A hash table from override methods to their base virtual method.
230 // <remarks>
231 static Hashtable method_overrides;
233 // <remarks>
234 // Keeps track of methods
235 // </remarks>
237 static Hashtable builder_to_method;
239 // <remarks>
240 // Contains all public types from referenced assemblies.
241 // This member is used only if CLS Compliance verification is required.
242 // </remarks>
243 public static Hashtable AllClsTopLevelTypes;
245 static Hashtable fieldbuilders_to_fields;
246 static Hashtable propertybuilder_to_property;
247 static Hashtable fields;
248 static Hashtable events;
250 static PtrHashtable assembly_internals_vis_attrs;
252 struct Signature {
253 public string name;
254 public Type [] args;
257 public static void CleanUp ()
259 // Lets get everything clean so that we can collect before generating code
260 builder_to_declspace = null;
261 builder_to_member_cache = null;
262 builder_to_ifaces = null;
263 indexer_arguments = null;
264 method_params = null;
265 builder_to_method = null;
267 fields = null;
268 fieldbuilders_to_fields = null;
269 events = null;
270 priv_fields_events = null;
271 type_hash = null;
272 propertybuilder_to_property = null;
274 assembly_internals_vis_attrs = null;
276 CleanUpGenerics ();
277 TypeHandle.CleanUp ();
280 /// <summary>
281 /// A filter for Findmembers that uses the Signature object to
282 /// extract objects
283 /// </summary>
284 static bool SignatureFilter (MemberInfo mi, object criteria)
286 Signature sig = (Signature) criteria;
288 if (!(mi is MethodBase))
289 return false;
291 if (mi.Name != sig.name)
292 return false;
294 int count = sig.args.Length;
296 if (mi is MethodBuilder || mi is ConstructorBuilder){
297 Type [] candidate_args = GetParameterData ((MethodBase) mi).Types;
299 if (candidate_args.Length != count)
300 return false;
302 for (int i = 0; i < count; i++)
303 if (candidate_args [i] != sig.args [i])
304 return false;
306 return true;
307 } else {
308 ParameterInfo [] pars = ((MethodBase) mi).GetParameters ();
310 if (pars.Length != count)
311 return false;
313 for (int i = 0; i < count; i++)
314 if (pars [i].ParameterType != sig.args [i])
315 return false;
316 return true;
320 // A delegate that points to the filter above.
321 static MemberFilter signature_filter;
324 // These are expressions that represent some of the internal data types, used
325 // elsewhere
327 static void InitExpressionTypes ()
329 system_object_expr = new TypeLookupExpression ("System.Object");
330 system_string_expr = new TypeLookupExpression ("System.String");
331 system_boolean_expr = new TypeLookupExpression ("System.Boolean");
332 system_decimal_expr = new TypeLookupExpression ("System.Decimal");
333 system_single_expr = new TypeLookupExpression ("System.Single");
334 system_double_expr = new TypeLookupExpression ("System.Double");
335 system_sbyte_expr = new TypeLookupExpression ("System.SByte");
336 system_byte_expr = new TypeLookupExpression ("System.Byte");
337 system_int16_expr = new TypeLookupExpression ("System.Int16");
338 system_uint16_expr = new TypeLookupExpression ("System.UInt16");
339 system_int32_expr = new TypeLookupExpression ("System.Int32");
340 system_uint32_expr = new TypeLookupExpression ("System.UInt32");
341 system_int64_expr = new TypeLookupExpression ("System.Int64");
342 system_uint64_expr = new TypeLookupExpression ("System.UInt64");
343 system_char_expr = new TypeLookupExpression ("System.Char");
344 system_void_expr = new TypeLookupExpression ("System.Void");
345 system_asynccallback_expr = new TypeLookupExpression ("System.AsyncCallback");
346 system_iasyncresult_expr = new TypeLookupExpression ("System.IAsyncResult");
347 system_valuetype_expr = new TypeLookupExpression ("System.ValueType");
348 system_intptr_expr = new TypeLookupExpression ("System.IntPtr");
351 static TypeManager ()
353 Reset ();
355 signature_filter = new MemberFilter (SignatureFilter);
356 InitExpressionTypes ();
359 static public void Reset ()
361 builder_to_declspace = new PtrHashtable ();
362 builder_to_member_cache = new PtrHashtable ();
363 builder_to_method = new PtrHashtable ();
364 method_params = new PtrHashtable ();
365 method_overrides = new PtrHashtable ();
366 indexer_arguments = new PtrHashtable ();
367 builder_to_ifaces = new PtrHashtable ();
369 fieldbuilders_to_fields = new Hashtable ();
370 propertybuilder_to_property = new Hashtable ();
371 fields = new Hashtable ();
372 type_hash = new DoubleHash ();
374 assembly_internals_vis_attrs = new PtrHashtable ();
376 InitGenerics ();
378 // to uncover regressions
379 cons_param_array_attribute = null;
382 public static void AddUserType (DeclSpace ds)
384 builder_to_declspace.Add (ds.TypeBuilder, ds);
388 // This entry point is used by types that we define under the covers
390 public static void RegisterBuilder (Type tb, Type [] ifaces)
392 if (ifaces != null)
393 builder_to_ifaces [tb] = ifaces;
396 public static void AddMethod (MethodBase builder, IMethodData method)
398 builder_to_method.Add (builder, method);
399 method_params.Add (builder, method.ParameterInfo);
402 public static IMethodData GetMethod (MethodBase builder)
404 return (IMethodData) builder_to_method [builder];
407 /// <summary>
408 /// Returns the DeclSpace whose Type is `t' or null if there is no
409 /// DeclSpace for `t' (ie, the Type comes from a library)
410 /// </summary>
411 public static DeclSpace LookupDeclSpace (Type t)
413 return builder_to_declspace [t] as DeclSpace;
416 /// <summary>
417 /// Returns the TypeContainer whose Type is `t' or null if there is no
418 /// TypeContainer for `t' (ie, the Type comes from a library)
419 /// </summary>
420 public static TypeContainer LookupTypeContainer (Type t)
422 return builder_to_declspace [t] as TypeContainer;
425 public static MemberCache LookupMemberCache (Type t)
427 if (t is TypeBuilder) {
428 IMemberContainer container = builder_to_declspace [t] as IMemberContainer;
429 if (container != null)
430 return container.MemberCache;
433 if (t is GenericTypeParameterBuilder) {
434 IMemberContainer container = builder_to_type_param [t] as IMemberContainer;
436 if (container != null)
437 return container.MemberCache;
440 return TypeHandle.GetMemberCache (t);
443 public static MemberCache LookupBaseInterfacesCache (Type t)
445 Type [] ifaces = GetInterfaces (t);
447 if (ifaces != null && ifaces.Length == 1)
448 return LookupMemberCache (ifaces [0]);
450 // TODO: the builder_to_member_cache should be indexed by 'ifaces', not 't'
451 MemberCache cache = builder_to_member_cache [t] as MemberCache;
452 if (cache != null)
453 return cache;
455 cache = new MemberCache (ifaces);
456 builder_to_member_cache.Add (t, cache);
457 return cache;
460 public static TypeContainer LookupInterface (Type t)
462 TypeContainer tc = (TypeContainer) builder_to_declspace [t];
463 if ((tc == null) || (tc.Kind != Kind.Interface))
464 return null;
466 return tc;
469 public static Delegate LookupDelegate (Type t)
471 return builder_to_declspace [t] as Delegate;
474 public static Class LookupClass (Type t)
476 return (Class) builder_to_declspace [t];
480 // We use this hash for multiple kinds of constructed types:
482 // (T, "&") Given T, get T &
483 // (T, "*") Given T, get T *
484 // (T, "[]") Given T and a array dimension, get T []
485 // (T, X) Given a type T and a simple name X, get the type T+X
487 // Accessibility tests, if necessary, should be done by the user
489 static DoubleHash type_hash = new DoubleHash ();
492 // Gets the reference to T version of the Type (T&)
494 public static Type GetReferenceType (Type t)
496 return t.MakeByRefType ();
500 // Gets the pointer to T version of the Type (T*)
502 public static Type GetPointerType (Type t)
504 return GetConstructedType (t, "*");
507 public static Type GetConstructedType (Type t, string dim)
509 object ret = null;
510 if (type_hash.Lookup (t, dim, out ret))
511 return (Type) ret;
513 ret = t.Module.GetType (t.ToString () + dim);
514 if (ret != null) {
515 type_hash.Insert (t, dim, ret);
516 return (Type) ret;
519 if (dim == "&") {
520 ret = GetReferenceType (t);
521 type_hash.Insert (t, dim, ret);
522 return (Type) ret;
525 if (t.IsGenericParameter || t.IsGenericType) {
526 int pos = 0;
527 Type result = t;
528 while ((pos < dim.Length) && (dim [pos] == '[')) {
529 pos++;
531 if (dim [pos] == ']') {
532 result = result.MakeArrayType ();
533 pos++;
535 if (pos < dim.Length)
536 continue;
538 type_hash.Insert (t, dim, result);
539 return result;
542 int rank = 0;
543 while (dim [pos] == ',') {
544 pos++; rank++;
547 if ((dim [pos] != ']') || (pos != dim.Length-1))
548 break;
550 result = result.MakeArrayType (rank + 1);
551 type_hash.Insert (t, dim, result);
552 return result;
556 type_hash.Insert (t, dim, null);
557 return null;
560 public static Type GetNestedType (Type t, string name)
562 object ret = null;
563 if (!type_hash.Lookup (t, name, out ret)) {
564 ret = t.GetNestedType (name,
565 BindingFlags.Static | BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.DeclaredOnly);
566 type_hash.Insert (t, name, ret);
568 return (Type) ret;
571 /// <summary>
572 /// Fills static table with exported types from all referenced assemblies.
573 /// This information is required for CLS Compliance tests.
574 /// </summary>
575 public static void LoadAllImportedTypes ()
577 AllClsTopLevelTypes = new Hashtable (1500);
578 foreach (Assembly a in RootNamespace.Global.Assemblies) {
579 foreach (Type t in a.GetExportedTypes ()) {
580 AllClsTopLevelTypes [t.FullName.ToLower (System.Globalization.CultureInfo.InvariantCulture)] = null;
585 public static bool NamespaceClash (string name, Location loc)
587 if (! RootNamespace.Global.IsNamespace (name))
588 return false;
590 Report.Error (519, loc, String.Format ("`{0}' clashes with a predefined namespace", name));
591 return true;
594 /// <summary>
595 /// Returns the C# name of a type if possible, or the full type name otherwise
596 /// </summary>
597 static public string CSharpName (Type t)
599 if (IsNullableType (t) && !t.IsGenericTypeDefinition) {
600 t = GetTypeArguments (t) [0];
601 return CSharpName (t) + "?";
604 string name = GetFullName (t);
606 return Regex.Replace (name,
607 @"^System\." +
608 @"(Int32|UInt32|Int16|UInt16|Int64|UInt64|" +
609 @"Single|Double|Char|Decimal|Byte|SByte|Object|" +
610 @"Boolean|String|Void|Null)" +
611 @"(\W+|\b)",
612 new MatchEvaluator (CSharpNameMatch)).Replace ('+', '.');
615 static public string CSharpName (Type[] types)
617 StringBuilder sb = new StringBuilder ();
618 foreach (Type t in types) {
619 sb.Append (CSharpName (t));
620 sb.Append (',');
622 sb.Remove (sb.Length - 1, 1);
623 return sb.ToString ();
626 static String CSharpNameMatch (Match match)
628 string s = match.Groups [1].Captures [0].Value;
629 return s.ToLower ().
630 Replace ("int32", "int").
631 Replace ("uint32", "uint").
632 Replace ("int16", "short").
633 Replace ("uint16", "ushort").
634 Replace ("int64", "long").
635 Replace ("uint64", "ulong").
636 Replace ("single", "float").
637 Replace ("boolean", "bool")
638 + match.Groups [2].Captures [0].Value;
641 /// <summary>
642 /// Returns the signature of the method with full namespace classification
643 /// </summary>
644 static public string GetFullNameSignature (MemberInfo mi)
646 PropertyInfo pi = mi as PropertyInfo;
647 if (pi != null) {
648 MethodBase pmi = pi.GetGetMethod (true);
649 if (pmi == null)
650 pmi = pi.GetSetMethod (true);
651 if (GetParameterData (pmi).Count > 0)
652 mi = pmi;
654 return (mi is MethodBase)
655 ? CSharpSignature (mi as MethodBase)
656 : CSharpName (mi.DeclaringType) + '.' + mi.Name;
659 private static int GetFullName (Type t, StringBuilder sb)
661 int pos = 0;
663 if (!t.IsGenericType) {
664 sb.Append (t.FullName);
665 return 0;
668 if (t.DeclaringType != null) {
669 pos = GetFullName (t.DeclaringType, sb);
670 sb.Append ('.');
671 sb.Append (RemoveGenericArity (t.Name));
672 } else {
673 sb.Append (RemoveGenericArity (t.FullName));
676 Type[] this_args = GetTypeArguments (t);
678 if (this_args.Length < pos)
679 throw new InternalErrorException (
680 "Enclosing class " + t.DeclaringType + " has more type arguments than " + t);
681 if (this_args.Length == pos)
682 return pos;
684 sb.Append ('<');
685 for (;;) {
686 sb.Append (CSharpName (this_args [pos++]));
687 if (pos == this_args.Length)
688 break;
689 sb.Append (',');
691 sb.Append ('>');
692 return pos;
695 public static string GetFullName (Type t)
697 if (t.IsGenericParameter)
698 return t.Name;
699 if (!t.IsGenericType)
700 return t.FullName;
702 StringBuilder sb = new StringBuilder ();
703 int pos = GetFullName (t, sb);
704 if (pos <= 0)
705 throw new InternalErrorException ("Generic Type " + t + " doesn't have type arguments");
706 return sb.ToString ();
709 static string RemoveGenericArity (string from)
711 int i = from.IndexOf ('`');
712 if (i > 0)
713 return from.Substring (0, i);
714 return from;
717 /// <summary>
718 /// When we need to report accessors as well
719 /// </summary>
720 static public string CSharpSignature (MethodBase mb)
722 return CSharpSignature (mb, false);
725 /// <summary>
726 /// Returns the signature of the method
727 /// </summary>
728 static public string CSharpSignature (MethodBase mb, bool show_accessor)
730 StringBuilder sig = new StringBuilder (CSharpName (mb.DeclaringType));
731 sig.Append ('.');
733 ParameterData iparams = GetParameterData (mb);
734 string parameters = iparams.GetSignatureForError ();
735 string accessor = "";
737 // Is property
738 if (mb.IsSpecialName) {
739 Operator.OpType ot = Operator.GetOperatorType (mb.Name);
740 if (ot != Operator.OpType.TOP) {
741 sig.Append ("operator ");
742 sig.Append (Operator.GetName (ot));
743 sig.Append (parameters);
744 return sig.ToString ();
747 if (mb.Name.StartsWith ("get_") || mb.Name.StartsWith ("set_")) {
748 accessor = mb.Name.Substring (0, 3);
752 // Is indexer
753 if (mb.IsSpecialName && !mb.IsConstructor) {
754 if (iparams.Count > (mb.Name.StartsWith ("get_") ? 0 : 1)) {
755 sig.Append ("this[");
756 if (show_accessor) {
757 sig.Append (parameters.Substring (1, parameters.Length - 2));
759 else {
760 int before_ret_val = parameters.LastIndexOf (',');
761 if (before_ret_val < 0)
762 sig.Append (parameters.Substring (1, parameters.Length - 2));
763 else
764 sig.Append (parameters.Substring (1, before_ret_val - 1));
766 sig.Append (']');
767 } else {
768 sig.Append (mb.Name.Substring (4));
770 } else {
771 if (mb.Name == ".ctor")
772 sig.Append (mb.DeclaringType.Name);
773 else {
774 sig.Append (mb.Name);
776 if (TypeManager.IsGenericMethod (mb)) {
777 Type[] args = mb.GetGenericArguments ();
778 sig.Append ('<');
779 for (int i = 0; i < args.Length; i++) {
780 if (i > 0)
781 sig.Append (',');
782 sig.Append (args [i].Name);
784 sig.Append ('>');
788 sig.Append (parameters);
791 if (show_accessor && accessor.Length > 0) {
792 sig.Append ('.');
793 sig.Append (accessor);
796 return sig.ToString ();
799 public static string GetMethodName (MethodInfo m)
801 if (!IsGenericMethodDefinition (m) && !IsGenericMethod (m))
802 return m.Name;
804 return MemberName.MakeName (m.Name, m.GetGenericArguments ().Length);
807 static public string CSharpSignature (EventInfo ei)
809 return CSharpName (ei.DeclaringType) + '.' + ei.Name;
812 /// <summary>
813 /// Looks up a type, and aborts if it is not found. This is used
814 /// by types required by the compiler
815 /// </summary>
816 static Type CoreLookupType (string ns_name, string name)
818 Namespace ns = RootNamespace.Global.GetNamespace (ns_name, true);
819 FullNamedExpression fne = ns.Lookup (RootContext.Tree.Types, name, Location.Null);
820 Type t = fne == null ? null : fne.Type;
821 if (t == null)
822 Report.Error (518, "The predefined type `" + name + "' is not defined or imported");
823 return t;
826 /// <summary>
827 /// Returns the MethodInfo for a method named `name' defined
828 /// in type `t' which takes arguments of types `args'
829 /// </summary>
830 static MethodInfo GetMethod (Type t, string name, Type [] args, bool is_private, bool report_errors)
832 MemberList list;
833 Signature sig;
834 BindingFlags flags = instance_and_static | BindingFlags.Public;
836 sig.name = name;
837 sig.args = args;
839 if (is_private)
840 flags |= BindingFlags.NonPublic;
842 list = FindMembers (t, MemberTypes.Method, flags, signature_filter, sig);
843 if (list.Count == 0) {
844 if (report_errors)
845 Report.Error (-19, "Can not find the core function `" + name + "'");
846 return null;
849 MethodInfo mi = list [0] as MethodInfo;
850 if (mi == null) {
851 if (report_errors)
852 Report.Error (-19, "Can not find the core function `" + name + "'");
853 return null;
856 return mi;
859 static MethodInfo GetMethod (Type t, string name, Type [] args, bool report_errors)
861 return GetMethod (t, name, args, false, report_errors);
864 static MethodInfo GetMethod (Type t, string name, Type [] args)
866 return GetMethod (t, name, args, true);
869 /// <summary>
870 /// Returns the PropertyInfo for a property named `name' defined
871 /// in type `t'
872 /// </summary>
873 public static PropertyInfo GetProperty (Type t, string name)
875 MemberList list = FindMembers (t, MemberTypes.Property, BindingFlags.Public |
876 BindingFlags.Instance, Type.FilterName, name);
877 if (list.Count == 0) {
878 Report.Error (-19, "Can not find the core property `" + name + "'");
879 return null;
882 PropertyInfo pi = list [0] as PropertyInfo;
883 if (pi == null) {
884 Report.Error (-19, "Can not find the core function `" + name + "'");
885 return null;
888 return pi;
891 /// <summary>
892 /// Returns the ConstructorInfo for "args"
893 /// </summary>
894 public static ConstructorInfo GetConstructor (Type t, Type [] args)
896 MemberList list;
897 Signature sig;
899 sig.name = ".ctor";
900 sig.args = args;
902 if (t == null)
903 throw new InternalErrorException ("Core types haven't been initialized yet?");
905 list = FindMembers (t, MemberTypes.Constructor,
906 instance_and_static | BindingFlags.Public | BindingFlags.DeclaredOnly,
907 signature_filter, sig);
908 if (list.Count == 0){
909 Report.Error (-19, "Can not find the core constructor for type `" + t.Name + "'");
910 return null;
913 ConstructorInfo ci = list [0] as ConstructorInfo;
914 if (ci == null){
915 Report.Error (-19, "Can not find the core constructor for type `" + t.Name + "'");
916 return null;
919 return ci;
922 public static void InitEnumUnderlyingTypes ()
925 int32_type = CoreLookupType ("System", "Int32");
926 int64_type = CoreLookupType ("System", "Int64");
927 uint32_type = CoreLookupType ("System", "UInt32");
928 uint64_type = CoreLookupType ("System", "UInt64");
929 byte_type = CoreLookupType ("System", "Byte");
930 sbyte_type = CoreLookupType ("System", "SByte");
931 short_type = CoreLookupType ("System", "Int16");
932 ushort_type = CoreLookupType ("System", "UInt16");
935 /// <remarks>
936 /// The types have to be initialized after the initial
937 /// population of the type has happened (for example, to
938 /// bootstrap the corlib.dll
939 /// </remarks>
940 public static void InitCoreTypes ()
942 object_type = CoreLookupType ("System", "Object");
943 value_type = CoreLookupType ("System", "ValueType");
945 InitEnumUnderlyingTypes ();
947 char_type = CoreLookupType ("System", "Char");
948 string_type = CoreLookupType ("System", "String");
949 float_type = CoreLookupType ("System", "Single");
950 double_type = CoreLookupType ("System", "Double");
951 char_ptr_type = GetPointerType (char_type);
952 decimal_type = CoreLookupType ("System", "Decimal");
953 bool_type = CoreLookupType ("System", "Boolean");
954 enum_type = CoreLookupType ("System", "Enum");
956 multicast_delegate_type = CoreLookupType ("System", "MulticastDelegate");
957 delegate_type = CoreLookupType ("System", "Delegate");
959 array_type = CoreLookupType ("System", "Array");
960 void_type = CoreLookupType ("System", "Void");
961 type_type = CoreLookupType ("System", "Type");
963 runtime_field_handle_type = CoreLookupType ("System", "RuntimeFieldHandle");
964 runtime_argument_handle_type = CoreLookupType ("System", "RuntimeArgumentHandle");
965 runtime_helpers_type = CoreLookupType ("System.Runtime.CompilerServices", "RuntimeHelpers");
966 default_member_type = CoreLookupType ("System.Reflection", "DefaultMemberAttribute");
967 runtime_handle_type = CoreLookupType ("System", "RuntimeTypeHandle");
968 asynccallback_type = CoreLookupType ("System", "AsyncCallback");
969 iasyncresult_type = CoreLookupType ("System", "IAsyncResult");
970 ienumerator_type = CoreLookupType ("System.Collections", "IEnumerator");
971 ienumerable_type = CoreLookupType ("System.Collections", "IEnumerable");
972 idisposable_type = CoreLookupType ("System", "IDisposable");
973 icloneable_type = CoreLookupType ("System", "ICloneable");
974 iconvertible_type = CoreLookupType ("System", "IConvertible");
975 monitor_type = CoreLookupType ("System.Threading", "Monitor");
976 intptr_type = CoreLookupType ("System", "IntPtr");
978 attribute_type = CoreLookupType ("System", "Attribute");
979 attribute_usage_type = CoreLookupType ("System", "AttributeUsageAttribute");
980 dllimport_type = CoreLookupType ("System.Runtime.InteropServices", "DllImportAttribute");
981 methodimpl_attr_type = CoreLookupType ("System.Runtime.CompilerServices", "MethodImplAttribute");
982 marshal_as_attr_type = CoreLookupType ("System.Runtime.InteropServices", "MarshalAsAttribute");
983 param_array_type = CoreLookupType ("System", "ParamArrayAttribute");
984 in_attribute_type = CoreLookupType ("System.Runtime.InteropServices", "InAttribute");
985 out_attribute_type = CoreLookupType ("System.Runtime.InteropServices", "OutAttribute");
986 #if NET_2_0
987 default_parameter_value_attribute_type = CoreLookupType ("System.Runtime.InteropServices", "DefaultParameterValueAttribute");
988 #endif
989 typed_reference_type = CoreLookupType ("System", "TypedReference");
990 arg_iterator_type = CoreLookupType ("System", "ArgIterator");
991 mbr_type = CoreLookupType ("System", "MarshalByRefObject");
992 decimal_constant_attribute_type = CoreLookupType ("System.Runtime.CompilerServices", "DecimalConstantAttribute");
994 unverifiable_code_type= CoreLookupType ("System.Security", "UnverifiableCodeAttribute");
996 void_ptr_type = GetPointerType (void_type);
998 indexer_name_type = CoreLookupType ("System.Runtime.CompilerServices", "IndexerNameAttribute");
1000 exception_type = CoreLookupType ("System", "Exception");
1001 invalid_operation_exception_type = CoreLookupType ("System", "InvalidOperationException");
1002 not_supported_exception_type = CoreLookupType ("System", "NotSupportedException");
1005 // Attribute types
1007 obsolete_attribute_type = CoreLookupType ("System", "ObsoleteAttribute");
1008 conditional_attribute_type = CoreLookupType ("System.Diagnostics", "ConditionalAttribute");
1009 cls_compliant_attribute_type = CoreLookupType ("System", "CLSCompliantAttribute");
1010 struct_layout_attribute_type = CoreLookupType ("System.Runtime.InteropServices", "StructLayoutAttribute");
1011 field_offset_attribute_type = CoreLookupType ("System.Runtime.InteropServices", "FieldOffsetAttribute");
1012 security_attr_type = CoreLookupType ("System.Security.Permissions", "SecurityAttribute");
1013 required_attr_type = CoreLookupType ("System.Runtime.CompilerServices", "RequiredAttributeAttribute");
1014 guid_attr_type = CoreLookupType ("System.Runtime.InteropServices", "GuidAttribute");
1015 assembly_culture_attribute_type = CoreLookupType ("System.Reflection", "AssemblyCultureAttribute");
1016 comimport_attr_type = CoreLookupType ("System.Runtime.InteropServices", "ComImportAttribute");
1017 coclass_attr_type = CoreLookupType ("System.Runtime.InteropServices", "CoClassAttribute");
1019 InitGenericCoreTypes ();
1022 // .NET 2.0
1024 compiler_generated_attr_type = CoreLookupType ("System.Runtime.CompilerServices", "CompilerGeneratedAttribute");
1025 fixed_buffer_attr_type = CoreLookupType ("System.Runtime.CompilerServices", "FixedBufferAttribute");
1026 default_charset_type = CoreLookupType ("System.Runtime.InteropServices", "DefaultCharSetAttribute");
1027 internals_visible_attr_type = CoreLookupType ("System.Runtime.CompilerServices", "InternalsVisibleToAttribute");
1028 runtime_compatibility_attr_type = CoreLookupType ("System.Runtime.CompilerServices", "RuntimeCompatibilityAttribute");
1030 // When compiling corlib, store the "real" types here.
1032 if (!RootContext.StdLib) {
1033 system_int32_type = typeof (System.Int32);
1034 system_array_type = typeof (System.Array);
1035 system_type_type = typeof (System.Type);
1036 system_assemblybuilder_type = typeof (System.Reflection.Emit.AssemblyBuilder);
1038 system_int_array_get_length = GetMethod (
1039 system_array_type, "get_Length", Type.EmptyTypes);
1040 system_int_array_get_rank = GetMethod (
1041 system_array_type, "get_Rank", Type.EmptyTypes);
1042 system_object_array_clone = GetMethod (
1043 system_array_type, "Clone", Type.EmptyTypes);
1045 Type [] system_int_arg = { system_int32_type };
1046 system_int_array_get_length_int = GetMethod (
1047 system_array_type, "GetLength", system_int_arg);
1048 system_int_array_get_upper_bound_int = GetMethod (
1049 system_array_type, "GetUpperBound", system_int_arg);
1050 system_int_array_get_lower_bound_int = GetMethod (
1051 system_array_type, "GetLowerBound", system_int_arg);
1053 Type [] system_array_int_arg = { system_array_type, system_int32_type };
1054 system_void_array_copyto_array_int = GetMethod (
1055 system_array_type, "CopyTo", system_array_int_arg);
1057 Type [] system_3_type_arg = {
1058 system_type_type, system_type_type, system_type_type };
1059 Type [] system_4_type_arg = {
1060 system_type_type, system_type_type, system_type_type, system_type_type };
1062 MethodInfo set_corlib_type_builders = GetMethod (
1063 system_assemblybuilder_type, "SetCorlibTypeBuilders",
1064 system_4_type_arg, true, false);
1066 if (set_corlib_type_builders != null) {
1067 object[] args = new object [4];
1068 args [0] = object_type;
1069 args [1] = value_type;
1070 args [2] = enum_type;
1071 args [3] = void_type;
1073 set_corlib_type_builders.Invoke (CodeGen.Assembly.Builder, args);
1074 } else {
1075 // Compatibility for an older version of the class libs.
1076 set_corlib_type_builders = GetMethod (
1077 system_assemblybuilder_type, "SetCorlibTypeBuilders",
1078 system_3_type_arg, true, true);
1080 if (set_corlib_type_builders == null) {
1081 Report.Error (-26, "Corlib compilation is not supported in Microsoft.NET due to bugs in it");
1082 return;
1085 object[] args = new object [3];
1086 args [0] = object_type;
1087 args [1] = value_type;
1088 args [2] = enum_type;
1090 set_corlib_type_builders.Invoke (CodeGen.Assembly.Builder, args);
1094 system_object_expr.Type = object_type;
1095 system_string_expr.Type = string_type;
1096 system_boolean_expr.Type = bool_type;
1097 system_decimal_expr.Type = decimal_type;
1098 system_single_expr.Type = float_type;
1099 system_double_expr.Type = double_type;
1100 system_sbyte_expr.Type = sbyte_type;
1101 system_byte_expr.Type = byte_type;
1102 system_int16_expr.Type = short_type;
1103 system_uint16_expr.Type = ushort_type;
1104 system_int32_expr.Type = int32_type;
1105 system_uint32_expr.Type = uint32_type;
1106 system_int64_expr.Type = int64_type;
1107 system_uint64_expr.Type = uint64_type;
1108 system_char_expr.Type = char_type;
1109 system_void_expr.Type = void_type;
1110 system_asynccallback_expr.Type = asynccallback_type;
1111 system_iasyncresult_expr.Type = iasyncresult_type;
1112 system_valuetype_expr.Type = value_type;
1115 // These are only used for compare purposes
1117 anonymous_method_type = typeof (AnonymousMethod);
1118 null_type = typeof (NullType);
1122 // The helper methods that are used by the compiler
1124 public static void InitCodeHelpers ()
1127 // Now load the default methods that we use.
1129 Type [] string_string = { string_type, string_type };
1130 string_concat_string_string = GetMethod (
1131 string_type, "Concat", string_string);
1132 Type [] string_string_string = { string_type, string_type, string_type };
1133 string_concat_string_string_string = GetMethod (
1134 string_type, "Concat", string_string_string);
1135 Type [] string_string_string_string = { string_type, string_type, string_type, string_type };
1136 string_concat_string_string_string_string = GetMethod (
1137 string_type, "Concat", string_string_string_string);
1138 Type[] params_string = { GetConstructedType (string_type, "[]") };
1139 string_concat_string_dot_dot_dot = GetMethod (
1140 string_type, "Concat", params_string);
1142 Type [] object_object = { object_type, object_type };
1143 string_concat_object_object = GetMethod (
1144 string_type, "Concat", object_object);
1145 Type [] object_object_object = { object_type, object_type, object_type };
1146 string_concat_object_object_object = GetMethod (
1147 string_type, "Concat", object_object_object);
1148 Type[] params_object = { GetConstructedType (object_type, "[]") };
1149 string_concat_object_dot_dot_dot = GetMethod (
1150 string_type, "Concat", params_object);
1152 Type [] string_ = { string_type };
1153 string_isinterneted_string = GetMethod (
1154 string_type, "IsInterned", string_);
1156 Type [] runtime_type_handle = { runtime_handle_type };
1157 system_type_get_type_from_handle = GetMethod (
1158 type_type, "GetTypeFromHandle", runtime_type_handle);
1160 Type [] delegate_delegate = { delegate_type, delegate_type };
1161 delegate_combine_delegate_delegate = GetMethod (
1162 delegate_type, "Combine", delegate_delegate);
1164 delegate_remove_delegate_delegate = GetMethod (
1165 delegate_type, "Remove", delegate_delegate);
1168 // Void arguments
1170 ienumerator_getcurrent = GetProperty (
1171 ienumerator_type, "Current");
1172 bool_movenext_void = GetMethod (
1173 ienumerator_type, "MoveNext", Type.EmptyTypes);
1174 void_reset_void = GetMethod (
1175 ienumerator_type, "Reset", Type.EmptyTypes);
1176 void_dispose_void = GetMethod (
1177 idisposable_type, "Dispose", Type.EmptyTypes);
1178 int_get_offset_to_string_data = GetMethod (
1179 runtime_helpers_type, "get_OffsetToStringData", Type.EmptyTypes);
1180 int_array_get_length = GetMethod (
1181 array_type, "get_Length", Type.EmptyTypes);
1182 int_array_get_rank = GetMethod (
1183 array_type, "get_Rank", Type.EmptyTypes);
1184 ienumerable_getenumerator_void = GetMethod (
1185 ienumerable_type, "GetEnumerator", Type.EmptyTypes);
1188 // Int32 arguments
1190 Type [] int_arg = { int32_type };
1191 int_array_get_length_int = GetMethod (
1192 array_type, "GetLength", int_arg);
1193 int_array_get_upper_bound_int = GetMethod (
1194 array_type, "GetUpperBound", int_arg);
1195 int_array_get_lower_bound_int = GetMethod (
1196 array_type, "GetLowerBound", int_arg);
1199 // System.Array methods
1201 object_array_clone = GetMethod (
1202 array_type, "Clone", Type.EmptyTypes);
1203 Type [] array_int_arg = { array_type, int32_type };
1204 void_array_copyto_array_int = GetMethod (
1205 array_type, "CopyTo", array_int_arg);
1208 // object arguments
1210 Type [] object_arg = { object_type };
1211 void_monitor_enter_object = GetMethod (
1212 monitor_type, "Enter", object_arg);
1213 void_monitor_exit_object = GetMethod (
1214 monitor_type, "Exit", object_arg);
1216 Type [] array_field_handle_arg = { array_type, runtime_field_handle_type };
1218 void_initializearray_array_fieldhandle = GetMethod (
1219 runtime_helpers_type, "InitializeArray", array_field_handle_arg);
1222 // Array functions
1224 int_getlength_int = GetMethod (
1225 array_type, "GetLength", int_arg);
1228 // Decimal constructors
1230 Type [] dec_arg = { int32_type, int32_type, int32_type, bool_type, byte_type };
1231 void_decimal_ctor_five_args = GetConstructor (
1232 decimal_type, dec_arg);
1234 void_decimal_ctor_int_arg = GetConstructor (decimal_type, int_arg);
1237 // Attributes
1239 unverifiable_code_ctor = GetConstructor (unverifiable_code_type, Type.EmptyTypes);
1240 default_member_ctor = GetConstructor (default_member_type, string_);
1242 Type[] short_arg = { short_type };
1243 struct_layout_attribute_ctor = GetConstructor (struct_layout_attribute_type, short_arg);
1245 decimal_constant_attribute_ctor = GetConstructor (decimal_constant_attribute_type, new Type []
1246 { byte_type, byte_type, uint32_type, uint32_type, uint32_type } );
1248 field_offset_attribute_ctor = GetConstructor (field_offset_attribute_type, new Type []
1249 { int32_type });
1252 // .NET 2.0 types
1254 compiler_generated_attr = new CustomAttributeBuilder (
1255 GetConstructor (compiler_generated_attr_type, Type.EmptyTypes), new object[0]);
1257 Type[] type_int_arg = { type_type, int32_type };
1258 fixed_buffer_attr_ctor = GetConstructor (fixed_buffer_attr_type, type_int_arg);
1260 // Object
1261 object_ctor = GetConstructor (object_type, Type.EmptyTypes);
1263 InitGenericCodeHelpers ();
1266 static public ConstructorInfo ConsParamArrayAttribute {
1267 get {
1268 if (cons_param_array_attribute == null)
1269 cons_param_array_attribute = GetConstructor (param_array_type, Type.EmptyTypes);
1270 return cons_param_array_attribute;
1274 const BindingFlags instance_and_static = BindingFlags.Static | BindingFlags.Instance;
1276 /// <remarks>
1277 /// This is the "old", non-cache based FindMembers() function. We cannot use
1278 /// the cache here because there is no member name argument.
1279 /// </remarks>
1280 public static MemberList FindMembers (Type t, MemberTypes mt, BindingFlags bf,
1281 MemberFilter filter, object criteria)
1283 #if MS_COMPATIBLE
1284 if (t.IsGenericType)
1285 t = t.GetGenericTypeDefinition ();
1286 #endif
1288 DeclSpace decl = (DeclSpace) builder_to_declspace [t];
1291 // `builder_to_declspace' contains all dynamic types.
1293 if (decl != null) {
1294 MemberList list;
1295 Timer.StartTimer (TimerType.FindMembers);
1296 list = decl.FindMembers (mt, bf, filter, criteria);
1297 Timer.StopTimer (TimerType.FindMembers);
1298 return list;
1302 // We have to take care of arrays specially, because GetType on
1303 // a TypeBuilder array will return a Type, not a TypeBuilder,
1304 // and we can not call FindMembers on this type.
1306 if (
1307 #if MS_COMPATIBLE
1308 !t.IsGenericType &&
1309 #endif
1310 t.IsSubclassOf (TypeManager.array_type))
1311 return new MemberList (TypeManager.array_type.FindMembers (mt, bf, filter, criteria));
1313 if (t is GenericTypeParameterBuilder) {
1314 TypeParameter tparam = (TypeParameter) builder_to_type_param [t];
1316 Timer.StartTimer (TimerType.FindMembers);
1317 MemberList list = tparam.FindMembers (
1318 mt, bf | BindingFlags.DeclaredOnly, filter, criteria);
1319 Timer.StopTimer (TimerType.FindMembers);
1320 return list;
1324 // Since FindMembers will not lookup both static and instance
1325 // members, we emulate this behaviour here.
1327 if ((bf & instance_and_static) == instance_and_static){
1328 MemberInfo [] i_members = t.FindMembers (
1329 mt, bf & ~BindingFlags.Static, filter, criteria);
1331 int i_len = i_members.Length;
1332 if (i_len == 1){
1333 MemberInfo one = i_members [0];
1336 // If any of these are present, we are done!
1338 if ((one is Type) || (one is EventInfo) || (one is FieldInfo))
1339 return new MemberList (i_members);
1342 MemberInfo [] s_members = t.FindMembers (
1343 mt, bf & ~BindingFlags.Instance, filter, criteria);
1345 int s_len = s_members.Length;
1346 if (i_len > 0 || s_len > 0)
1347 return new MemberList (i_members, s_members);
1348 else {
1349 if (i_len > 0)
1350 return new MemberList (i_members);
1351 else
1352 return new MemberList (s_members);
1356 return new MemberList (t.FindMembers (mt, bf, filter, criteria));
1360 /// <summary>
1361 /// This method is only called from within MemberLookup. It tries to use the member
1362 /// cache if possible and falls back to the normal FindMembers if not. The `used_cache'
1363 /// flag tells the caller whether we used the cache or not. If we used the cache, then
1364 /// our return value will already contain all inherited members and the caller don't need
1365 /// to check base classes and interfaces anymore.
1366 /// </summary>
1367 private static MemberInfo [] MemberLookup_FindMembers (Type t, MemberTypes mt, BindingFlags bf,
1368 string name, out bool used_cache)
1370 MemberCache cache;
1373 // If this is a dynamic type, it's always in the `builder_to_declspace' hash table
1374 // and we can ask the DeclSpace for the MemberCache.
1376 if (t is TypeBuilder) {
1377 DeclSpace decl = (DeclSpace) builder_to_declspace [t];
1378 cache = decl.MemberCache;
1381 // If this DeclSpace has a MemberCache, use it.
1384 if (cache != null) {
1385 used_cache = true;
1386 return cache.FindMembers (
1387 mt, bf, name, FilterWithClosure_delegate, null);
1390 // If there is no MemberCache, we need to use the "normal" FindMembers.
1391 // Note, this is a VERY uncommon route!
1393 MemberList list;
1394 Timer.StartTimer (TimerType.FindMembers);
1395 list = decl.FindMembers (mt, bf | BindingFlags.DeclaredOnly,
1396 FilterWithClosure_delegate, name);
1397 Timer.StopTimer (TimerType.FindMembers);
1398 used_cache = false;
1399 return (MemberInfo []) list;
1403 // We have to take care of arrays specially, because GetType on
1404 // a TypeBuilder array will return a Type, not a TypeBuilder,
1405 // and we can not call FindMembers on this type.
1407 if (t == TypeManager.array_type || t.IsSubclassOf (TypeManager.array_type)) {
1408 used_cache = true;
1409 return TypeHandle.ArrayType.MemberCache.FindMembers (
1410 mt, bf, name, FilterWithClosure_delegate, null);
1413 if (t is GenericTypeParameterBuilder) {
1414 TypeParameter tparam = (TypeParameter) builder_to_type_param [t];
1416 MemberList list;
1417 Timer.StartTimer (TimerType.FindMembers);
1418 list = tparam.FindMembers (mt, bf & ~BindingFlags.DeclaredOnly,
1419 FilterWithClosure_delegate, name);
1420 Timer.StopTimer (TimerType.FindMembers);
1421 used_cache = true;
1422 return (MemberInfo []) list;
1425 if (t.IsGenericType && (mt == MemberTypes.NestedType)) {
1427 // This happens if we're resolving a class'es base class and interfaces
1428 // in TypeContainer.DefineType(). At this time, the types aren't
1429 // populated yet, so we can't use the cache.
1431 MemberInfo[] info = t.FindMembers (mt, bf | BindingFlags.DeclaredOnly,
1432 FilterWithClosure_delegate, name);
1433 used_cache = false;
1434 return info;
1438 // This call will always succeed. There is exactly one TypeHandle instance per
1439 // type, TypeHandle.GetMemberCache() will, if necessary, create a new one, and return
1440 // the corresponding MemberCache.
1442 cache = TypeHandle.GetMemberCache (t);
1444 used_cache = true;
1445 return cache.FindMembers (mt, bf, name, FilterWithClosure_delegate, null);
1448 public static bool IsBuiltinType (Type t)
1450 t = TypeToCoreType (t);
1451 if (t == object_type || t == string_type || t == int32_type || t == uint32_type ||
1452 t == int64_type || t == uint64_type || t == float_type || t == double_type ||
1453 t == char_type || t == short_type || t == decimal_type || t == bool_type ||
1454 t == sbyte_type || t == byte_type || t == ushort_type || t == void_type)
1455 return true;
1456 else
1457 return false;
1460 public static bool IsBuiltinType (TypeContainer tc)
1462 return IsBuiltinType (tc.TypeBuilder);
1466 // This is like IsBuiltinType, but lacks decimal_type, we should also clean up
1467 // the pieces in the code where we use IsBuiltinType and special case decimal_type.
1469 public static bool IsPrimitiveType (Type t)
1471 return (t == int32_type || t == uint32_type ||
1472 t == int64_type || t == uint64_type || t == float_type || t == double_type ||
1473 t == char_type || t == short_type || t == bool_type ||
1474 t == sbyte_type || t == byte_type || t == ushort_type);
1477 public static bool IsDelegateType (Type t)
1479 t = DropGenericTypeArguments (t);
1480 if (t.IsSubclassOf (TypeManager.delegate_type))
1481 return true;
1482 else
1483 return false;
1486 public static bool IsEnumType (Type t)
1488 if (builder_to_declspace [t] is Enum)
1489 return true;
1491 #if MS_COMPATIBLE
1492 if (t.IsGenericParameter)
1493 return false;
1494 #endif
1495 return t.IsEnum;
1498 public static bool IsBuiltinOrEnum (Type t)
1500 if (IsBuiltinType (t))
1501 return true;
1503 if (IsEnumType (t))
1504 return true;
1506 return false;
1509 public static bool IsNullType (Type t)
1511 return t == null_type;
1514 public static bool IsAttributeType (Type t)
1516 return t == attribute_type && t.BaseType != null || IsSubclassOf (t, attribute_type);
1519 static Stack unmanaged_enclosing_types = new Stack (4);
1522 // Whether a type is unmanaged. This is used by the unsafe code (25.2)
1524 public static bool IsUnmanagedType (Type t)
1526 // Avoid infloops in the case of: unsafe struct Foo { Foo *x; }
1527 if (unmanaged_enclosing_types.Contains (t))
1528 return true;
1530 // builtins that are not unmanaged types
1531 if (t == TypeManager.object_type || t == TypeManager.string_type)
1532 return false;
1534 if (IsBuiltinOrEnum (t))
1535 return true;
1537 // Someone did the work of checking if the ElementType of t is unmanaged. Let's not repeat it.
1538 if (t.IsPointer)
1539 return true;
1541 // Arrays are disallowed, even if we mark them with [MarshalAs(UnmanagedType.ByValArray, ...)]
1542 if (t.IsArray)
1543 return false;
1545 if (!IsValueType (t))
1546 return false;
1548 for (Type p = t.DeclaringType; p != null; p = p.DeclaringType) {
1549 if (p.IsGenericTypeDefinition)
1550 return false;
1553 unmanaged_enclosing_types.Push (t);
1555 bool retval = true;
1557 if (t is TypeBuilder) {
1558 TypeContainer tc = LookupTypeContainer (t);
1559 if (tc.Fields != null){
1560 foreach (FieldMember f in tc.Fields){
1561 // Avoid using f.FieldBuilder: f.Define () may not yet have been invoked.
1562 if ((f.ModFlags & Modifiers.STATIC) != 0)
1563 continue;
1564 if (f.MemberType == null)
1565 continue;
1566 if (!IsUnmanagedType (f.MemberType)){
1567 Report.SymbolRelatedToPreviousError (f.Location, CSharpName (t) + "." + f.Name);
1568 retval = false;
1572 } else {
1573 FieldInfo [] fields = t.GetFields (BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance);
1575 foreach (FieldInfo f in fields){
1576 if (!IsUnmanagedType (f.FieldType)){
1577 Report.SymbolRelatedToPreviousError (f);
1578 retval = false;
1583 unmanaged_enclosing_types.Pop ();
1585 return retval;
1588 public static bool IsValueType (Type t)
1590 return t.IsGenericParameter || t.IsValueType;
1593 public static bool IsInterfaceType (Type t)
1595 TypeContainer tc = (TypeContainer) builder_to_declspace [t];
1596 if (tc == null)
1597 return false;
1599 return tc.Kind == Kind.Interface;
1602 public static bool IsSubclassOf (Type type, Type base_type)
1604 TypeParameter tparam = LookupTypeParameter (type);
1605 TypeParameter pparam = LookupTypeParameter (base_type);
1607 if ((tparam != null) && (pparam != null)) {
1608 if (tparam == pparam)
1609 return true;
1611 return tparam.IsSubclassOf (base_type);
1614 #if MS_COMPATIBLE
1615 if (type.IsGenericType)
1616 type = type.GetGenericTypeDefinition ();
1617 #endif
1619 if (type.IsSubclassOf (base_type))
1620 return true;
1622 do {
1623 if (IsEqual (type, base_type))
1624 return true;
1626 type = type.BaseType;
1627 } while (type != null);
1629 return false;
1632 public static bool IsPrivateAccessible (Type type, Type parent)
1634 if (type.Equals (parent))
1635 return true;
1636 return DropGenericTypeArguments (type) == DropGenericTypeArguments (parent);
1639 public static bool IsFamilyAccessible (Type type, Type parent)
1641 TypeParameter tparam = LookupTypeParameter (type);
1642 TypeParameter pparam = LookupTypeParameter (parent);
1644 if ((tparam != null) && (pparam != null)) {
1645 if (tparam == pparam)
1646 return true;
1648 return tparam.IsSubclassOf (parent);
1651 do {
1652 if (IsInstantiationOfSameGenericType (type, parent))
1653 return true;
1655 type = type.BaseType;
1656 } while (type != null);
1658 return false;
1662 // Checks whether `type' is a subclass or nested child of `base_type'.
1664 public static bool IsNestedFamilyAccessible (Type type, Type base_type)
1666 do {
1667 if (IsFamilyAccessible (type, base_type))
1668 return true;
1670 // Handle nested types.
1671 type = type.DeclaringType;
1672 } while (type != null);
1674 return false;
1678 // Checks whether `type' is a nested child of `parent'.
1680 public static bool IsNestedChildOf (Type type, Type parent)
1682 type = DropGenericTypeArguments (type);
1683 parent = DropGenericTypeArguments (parent);
1685 if (IsEqual (type, parent))
1686 return false;
1688 type = type.DeclaringType;
1689 while (type != null) {
1690 if (IsEqual (type, parent))
1691 return true;
1693 type = type.DeclaringType;
1696 return false;
1700 // Checks whether `extern_type' is friend of the output assembly
1702 public static bool IsFriendAssembly (Assembly assembly)
1704 if (assembly_internals_vis_attrs.Contains (assembly))
1705 return (bool)(assembly_internals_vis_attrs [assembly]);
1707 object [] attrs = assembly.GetCustomAttributes (internals_visible_attr_type, false);
1708 if (attrs.Length == 0) {
1709 assembly_internals_vis_attrs.Add (assembly, false);
1710 return false;
1713 AssemblyName this_name = CodeGen.Assembly.Name;
1714 byte [] this_token = this_name.GetPublicKeyToken ();
1715 bool is_friend = false;
1716 foreach (InternalsVisibleToAttribute attr in attrs) {
1717 if (attr.AssemblyName == null || attr.AssemblyName.Length == 0)
1718 continue;
1720 AssemblyName aname = null;
1721 try {
1722 aname = new AssemblyName (attr.AssemblyName);
1723 } catch (FileLoadException) {
1724 } catch (ArgumentException) {
1727 if (aname == null || aname.Name != this_name.Name)
1728 continue;
1730 byte [] key_token = aname.GetPublicKeyToken ();
1731 if (key_token != null) {
1732 if (this_token == null) {
1733 // Same name, but key token is null
1734 Error_FriendAccessNameNotMatching (aname.FullName);
1735 break;
1738 if (!CompareKeyTokens (this_token, key_token))
1739 continue;
1742 is_friend = true;
1743 break;
1746 assembly_internals_vis_attrs.Add (assembly, is_friend);
1747 return is_friend;
1750 static bool CompareKeyTokens (byte [] token1, byte [] token2)
1752 for (int i = 0; i < token1.Length; i++)
1753 if (token1 [i] != token2 [i])
1754 return false;
1756 return true;
1759 static void Error_FriendAccessNameNotMatching (string other_name)
1761 Report.Error (281, "Friend access was granted to `" + other_name +
1762 "', but the output assembly is named `" + CodeGen.Assembly.Name.FullName +
1763 "'. Try adding a reference to `" + other_name +
1764 "' or change the output assembly name to match it");
1768 // Do the right thing when returning the element type of an
1769 // array type based on whether we are compiling corlib or not
1771 public static Type GetElementType (Type t)
1773 if (RootContext.StdLib)
1774 return t.GetElementType ();
1775 else
1776 return TypeToCoreType (t.GetElementType ());
1779 /// <summary>
1780 /// This method is not implemented by MS runtime for dynamic types
1781 /// </summary>
1782 public static bool HasElementType (Type t)
1784 return t.IsArray || t.IsPointer || t.IsByRef;
1787 /// <summary>
1788 /// Gigantic work around for missing features in System.Reflection.Emit follows.
1789 /// </summary>
1791 /// <remarks>
1792 /// Since System.Reflection.Emit can not return MethodBase.GetParameters
1793 /// for anything which is dynamic, and we need this in a number of places,
1794 /// we register this information here, and use it afterwards.
1795 /// </remarks>
1796 static public void RegisterMethod (MethodBase mb, Parameters ip)
1798 method_params.Add (mb, ip);
1801 static public ParameterData GetParameterData (MethodBase mb)
1803 ParameterData pd = (ParameterData)method_params [mb];
1804 if (pd == null) {
1805 if (mb is MethodBuilder || mb is ConstructorBuilder)
1806 throw new InternalErrorException ("Argument for Method not registered" + mb);
1808 pd = new ReflectionParameters (mb);
1809 method_params.Add (mb, pd);
1811 return pd;
1814 static public void RegisterOverride (MethodBase override_method, MethodBase base_method)
1816 if (!method_overrides.Contains (override_method))
1817 method_overrides [override_method] = base_method;
1818 if (method_overrides [override_method] != base_method)
1819 throw new InternalErrorException ("Override mismatch: " + override_method);
1822 static public bool IsOverride (MethodBase m)
1824 m = DropGenericMethodArguments (m);
1826 return m.IsVirtual &&
1827 (m.Attributes & MethodAttributes.NewSlot) == 0 &&
1828 (m is MethodBuilder || method_overrides.Contains (m));
1831 static public MethodBase TryGetBaseDefinition (MethodBase m)
1833 m = DropGenericMethodArguments (m);
1835 return (MethodBase) method_overrides [m];
1838 /// <summary>
1839 /// Returns the argument types for an indexer based on its PropertyInfo
1841 /// For dynamic indexers, we use the compiler provided types, for
1842 /// indexers from existing assemblies we load them from GetParameters,
1843 /// and insert them into the cache
1844 /// </summary>
1845 static public Type [] GetArgumentTypes (PropertyInfo indexer)
1847 if (indexer_arguments.Contains (indexer))
1848 return (Type []) indexer_arguments [indexer];
1849 else if (indexer is PropertyBuilder)
1850 // If we're a PropertyBuilder and not in the
1851 // `indexer_arguments' hash, then we're a property and
1852 // not an indexer.
1853 return Type.EmptyTypes;
1854 else {
1855 ParameterInfo [] pi = indexer.GetIndexParameters ();
1856 // Property, not an indexer.
1857 if (pi == null)
1858 return Type.EmptyTypes;
1859 int c = pi.Length;
1860 Type [] types = new Type [c];
1862 for (int i = 0; i < c; i++)
1863 types [i] = pi [i].ParameterType;
1865 indexer_arguments.Add (indexer, types);
1866 return types;
1870 public static void RegisterConstant (FieldInfo fb, IConstant ic)
1872 fields.Add (fb, ic);
1875 public static IConstant GetConstant (FieldInfo fb)
1877 if (fb == null)
1878 return null;
1880 return (IConstant)fields [fb];
1883 public static void RegisterProperty (PropertyInfo pi, PropertyBase pb)
1885 propertybuilder_to_property.Add (pi, pb);
1888 public static PropertyBase GetProperty (PropertyInfo pi)
1890 return (PropertyBase)propertybuilder_to_property [pi];
1893 static public bool RegisterFieldBase (FieldBuilder fb, FieldBase f)
1895 if (fieldbuilders_to_fields.Contains (fb))
1896 return false;
1898 fieldbuilders_to_fields.Add (fb, f);
1899 return true;
1903 // The return value can be null; This will be the case for
1904 // auxiliary FieldBuilders created by the compiler that have no
1905 // real field being declared on the source code
1907 static public FieldBase GetField (FieldInfo fb)
1909 fb = GetGenericFieldDefinition (fb);
1910 return (FieldBase) fieldbuilders_to_fields [fb];
1913 static public void RegisterEvent (MyEventBuilder eb, MethodBase add, MethodBase remove)
1915 if (events == null)
1916 events = new Hashtable ();
1918 if (!events.Contains (eb)) {
1919 events.Add (eb, new Pair (add, remove));
1923 static public MethodInfo GetAddMethod (EventInfo ei)
1925 if (ei is MyEventBuilder) {
1926 Pair pair = (Pair) events [ei];
1928 return (MethodInfo) pair.First;
1930 return ei.GetAddMethod (true);
1933 static public MethodInfo GetRemoveMethod (EventInfo ei)
1935 if (ei is MyEventBuilder) {
1936 Pair pair = (Pair) events [ei];
1938 return (MethodInfo) pair.Second;
1940 return ei.GetRemoveMethod (true);
1943 static Hashtable priv_fields_events;
1945 static public bool RegisterPrivateFieldOfEvent (EventInfo einfo, FieldBuilder builder)
1947 if (priv_fields_events == null)
1948 priv_fields_events = new Hashtable ();
1950 if (priv_fields_events.Contains (einfo))
1951 return false;
1953 priv_fields_events.Add (einfo, builder);
1955 return true;
1958 static public MemberInfo GetPrivateFieldOfEvent (EventInfo ei)
1960 if (priv_fields_events == null)
1961 return null;
1962 else
1963 return (MemberInfo) priv_fields_events [ei];
1966 static public bool RegisterIndexer (PropertyBuilder pb, MethodBase get,
1967 MethodBase set, Type[] args)
1969 indexer_arguments.Add (pb, args);
1971 return true;
1974 public static bool CheckStructCycles (TypeContainer tc, Hashtable seen)
1976 Hashtable hash = new Hashtable ();
1977 return CheckStructCycles (tc, seen, hash);
1980 public static bool CheckStructCycles (TypeContainer tc, Hashtable seen,
1981 Hashtable hash)
1983 if ((tc.Kind != Kind.Struct) || IsBuiltinType (tc))
1984 return true;
1987 // `seen' contains all types we've already visited.
1989 if (seen.Contains (tc))
1990 return true;
1991 seen.Add (tc, null);
1993 if (tc.Fields == null)
1994 return true;
1996 foreach (FieldMember field in tc.Fields) {
1997 if (field.FieldBuilder == null || field.FieldBuilder.IsStatic)
1998 continue;
2000 Type ftype = field.FieldBuilder.FieldType;
2001 TypeContainer ftc = LookupTypeContainer (ftype);
2002 if (ftc == null)
2003 continue;
2005 if (hash.Contains (ftc)) {
2006 Report.Error (523, tc.Location,
2007 "Struct member `{0}.{1}' of type `{2}' " +
2008 "causes a cycle in the struct layout",
2009 tc.Name, field.Name, ftc.Name);
2010 return false;
2014 // `hash' contains all types in the current path.
2016 hash.Add (tc, null);
2018 bool ok = CheckStructCycles (ftc, seen, hash);
2020 hash.Remove (tc);
2022 if (!ok)
2023 return false;
2025 if (!seen.Contains (ftc))
2026 seen.Add (ftc, null);
2029 return true;
2032 /// <summary>
2033 /// Given an array of interface types, expand and eliminate repeated ocurrences
2034 /// of an interface.
2035 /// </summary>
2037 /// <remarks>
2038 /// This expands in context like: IA; IB : IA; IC : IA, IB; the interface "IC" to
2039 /// be IA, IB, IC.
2040 /// </remarks>
2041 public static Type[] ExpandInterfaces (TypeExpr [] base_interfaces)
2043 ArrayList new_ifaces = new ArrayList ();
2045 foreach (TypeExpr iface in base_interfaces){
2046 Type itype = iface.Type;
2048 if (new_ifaces.Contains (itype))
2049 continue;
2051 new_ifaces.Add (itype);
2053 Type [] implementing = GetInterfaces (itype);
2055 foreach (Type imp in implementing){
2056 if (!new_ifaces.Contains (imp))
2057 new_ifaces.Add (imp);
2060 Type [] ret = new Type [new_ifaces.Count];
2061 new_ifaces.CopyTo (ret, 0);
2062 return ret;
2065 public static Type[] ExpandInterfaces (Type [] base_interfaces)
2067 ArrayList new_ifaces = new ArrayList ();
2069 foreach (Type itype in base_interfaces){
2070 if (new_ifaces.Contains (itype))
2071 continue;
2073 new_ifaces.Add (itype);
2075 Type [] implementing = GetInterfaces (itype);
2077 foreach (Type imp in implementing){
2078 if (!new_ifaces.Contains (imp))
2079 new_ifaces.Add (imp);
2082 Type [] ret = new Type [new_ifaces.Count];
2083 new_ifaces.CopyTo (ret, 0);
2084 return ret;
2087 static PtrHashtable iface_cache = new PtrHashtable ();
2089 /// <summary>
2090 /// This function returns the interfaces in the type `t'. Works with
2091 /// both types and TypeBuilders.
2092 /// </summary>
2093 public static Type [] GetInterfaces (Type t)
2095 Type [] cached = iface_cache [t] as Type [];
2096 if (cached != null)
2097 return cached;
2100 // The reason for catching the Array case is that Reflection.Emit
2101 // will not return a TypeBuilder for Array types of TypeBuilder types,
2102 // but will still throw an exception if we try to call GetInterfaces
2103 // on the type.
2105 // Since the array interfaces are always constant, we return those for
2106 // the System.Array
2109 if (t.IsArray)
2110 t = TypeManager.array_type;
2112 if ((t is TypeBuilder) || t.IsGenericType) {
2113 Type [] base_ifaces;
2115 if (t.BaseType == null)
2116 base_ifaces = Type.EmptyTypes;
2117 else
2118 base_ifaces = GetInterfaces (t.BaseType);
2119 Type[] type_ifaces;
2120 if (t.IsGenericType)
2121 #if MS_COMPATIBLE
2122 type_ifaces = t.GetGenericTypeDefinition().GetInterfaces ();
2123 #else
2124 type_ifaces = t.GetInterfaces ();
2125 #endif
2126 else
2127 type_ifaces = (Type []) builder_to_ifaces [t];
2128 if (type_ifaces == null || type_ifaces.Length == 0)
2129 type_ifaces = Type.EmptyTypes;
2131 int base_count = base_ifaces.Length;
2132 Type [] result = new Type [base_count + type_ifaces.Length];
2133 base_ifaces.CopyTo (result, 0);
2134 type_ifaces.CopyTo (result, base_count);
2136 iface_cache [t] = result;
2137 return result;
2138 } else if (t is GenericTypeParameterBuilder){
2139 Type[] type_ifaces = (Type []) builder_to_ifaces [t];
2140 if (type_ifaces == null || type_ifaces.Length == 0)
2141 type_ifaces = Type.EmptyTypes;
2143 iface_cache [t] = type_ifaces;
2144 return type_ifaces;
2145 } else {
2146 Type[] ifaces = t.GetInterfaces ();
2147 iface_cache [t] = ifaces;
2148 return ifaces;
2153 // gets the interfaces that are declared explicitly on t
2155 public static Type [] GetExplicitInterfaces (TypeBuilder t)
2157 return (Type []) builder_to_ifaces [t];
2160 /// <remarks>
2161 /// The following is used to check if a given type implements an interface.
2162 /// The cache helps us reduce the expense of hitting Type.GetInterfaces everytime.
2163 /// </remarks>
2164 public static bool ImplementsInterface (Type t, Type iface)
2166 Type [] interfaces;
2169 // FIXME OPTIMIZATION:
2170 // as soon as we hit a non-TypeBuiler in the interface
2171 // chain, we could return, as the `Type.GetInterfaces'
2172 // will return all the interfaces implement by the type
2173 // or its bases.
2175 do {
2176 interfaces = GetInterfaces (t);
2178 if (interfaces != null){
2179 foreach (Type i in interfaces){
2180 if (i == iface)
2181 return true;
2185 t = t.BaseType;
2186 } while (t != null);
2188 return false;
2191 static NumberFormatInfo nf_provider = CultureInfo.CurrentCulture.NumberFormat;
2193 // This is a custom version of Convert.ChangeType() which works
2194 // with the TypeBuilder defined types when compiling corlib.
2195 public static object ChangeType (object value, Type conversionType, out bool error)
2197 IConvertible convert_value = value as IConvertible;
2199 if (convert_value == null){
2200 error = true;
2201 return null;
2205 // We must use Type.Equals() here since `conversionType' is
2206 // the TypeBuilder created version of a system type and not
2207 // the system type itself. You cannot use Type.GetTypeCode()
2208 // on such a type - it'd always return TypeCode.Object.
2210 error = false;
2211 try {
2212 if (conversionType.Equals (typeof (Boolean)))
2213 return (object)(convert_value.ToBoolean (nf_provider));
2214 else if (conversionType.Equals (typeof (Byte)))
2215 return (object)(convert_value.ToByte (nf_provider));
2216 else if (conversionType.Equals (typeof (Char)))
2217 return (object)(convert_value.ToChar (nf_provider));
2218 else if (conversionType.Equals (typeof (DateTime)))
2219 return (object)(convert_value.ToDateTime (nf_provider));
2220 else if (conversionType.Equals (TypeManager.decimal_type)) // typeof (Decimal)))
2221 return (object)(convert_value.ToDecimal (nf_provider));
2222 else if (conversionType.Equals (typeof (Double)))
2223 return (object)(convert_value.ToDouble (nf_provider));
2224 else if (conversionType.Equals (typeof (Int16)))
2225 return (object)(convert_value.ToInt16 (nf_provider));
2226 else if (conversionType.Equals (typeof (Int32)))
2227 return (object)(convert_value.ToInt32 (nf_provider));
2228 else if (conversionType.Equals (typeof (Int64)))
2229 return (object)(convert_value.ToInt64 (nf_provider));
2230 else if (conversionType.Equals (typeof (SByte)))
2231 return (object)(convert_value.ToSByte (nf_provider));
2232 else if (conversionType.Equals (typeof (Single)))
2233 return (object)(convert_value.ToSingle (nf_provider));
2234 else if (conversionType.Equals (typeof (String)))
2235 return (object)(convert_value.ToString (nf_provider));
2236 else if (conversionType.Equals (typeof (UInt16)))
2237 return (object)(convert_value.ToUInt16 (nf_provider));
2238 else if (conversionType.Equals (typeof (UInt32)))
2239 return (object)(convert_value.ToUInt32 (nf_provider));
2240 else if (conversionType.Equals (typeof (UInt64)))
2241 return (object)(convert_value.ToUInt64 (nf_provider));
2242 else if (conversionType.Equals (typeof (Object)))
2243 return (object)(value);
2244 else
2245 error = true;
2246 } catch {
2247 error = true;
2249 return null;
2253 // This is needed, because enumerations from assemblies
2254 // do not report their underlyingtype, but they report
2255 // themselves
2257 public static Type EnumToUnderlying (Type t)
2259 if (t == TypeManager.enum_type)
2260 return t;
2262 t = t.UnderlyingSystemType;
2263 if (!TypeManager.IsEnumType (t))
2264 return t;
2266 if (t is TypeBuilder) {
2267 // slow path needed to compile corlib
2268 if (t == TypeManager.bool_type ||
2269 t == TypeManager.byte_type ||
2270 t == TypeManager.sbyte_type ||
2271 t == TypeManager.char_type ||
2272 t == TypeManager.short_type ||
2273 t == TypeManager.ushort_type ||
2274 t == TypeManager.int32_type ||
2275 t == TypeManager.uint32_type ||
2276 t == TypeManager.int64_type ||
2277 t == TypeManager.uint64_type)
2278 return t;
2280 TypeCode tc = Type.GetTypeCode (t);
2282 switch (tc){
2283 case TypeCode.Boolean:
2284 return TypeManager.bool_type;
2285 case TypeCode.Byte:
2286 return TypeManager.byte_type;
2287 case TypeCode.SByte:
2288 return TypeManager.sbyte_type;
2289 case TypeCode.Char:
2290 return TypeManager.char_type;
2291 case TypeCode.Int16:
2292 return TypeManager.short_type;
2293 case TypeCode.UInt16:
2294 return TypeManager.ushort_type;
2295 case TypeCode.Int32:
2296 return TypeManager.int32_type;
2297 case TypeCode.UInt32:
2298 return TypeManager.uint32_type;
2299 case TypeCode.Int64:
2300 return TypeManager.int64_type;
2301 case TypeCode.UInt64:
2302 return TypeManager.uint64_type;
2304 throw new Exception ("Unhandled typecode in enum " + tc + " from " + t.AssemblyQualifiedName);
2308 // When compiling corlib and called with one of the core types, return
2309 // the corresponding typebuilder for that type.
2311 public static Type TypeToCoreType (Type t)
2313 if (RootContext.StdLib || (t is TypeBuilder))
2314 return t;
2316 TypeCode tc = Type.GetTypeCode (t);
2318 switch (tc){
2319 case TypeCode.Boolean:
2320 return TypeManager.bool_type;
2321 case TypeCode.Byte:
2322 return TypeManager.byte_type;
2323 case TypeCode.SByte:
2324 return TypeManager.sbyte_type;
2325 case TypeCode.Char:
2326 return TypeManager.char_type;
2327 case TypeCode.Int16:
2328 return TypeManager.short_type;
2329 case TypeCode.UInt16:
2330 return TypeManager.ushort_type;
2331 case TypeCode.Int32:
2332 return TypeManager.int32_type;
2333 case TypeCode.UInt32:
2334 return TypeManager.uint32_type;
2335 case TypeCode.Int64:
2336 return TypeManager.int64_type;
2337 case TypeCode.UInt64:
2338 return TypeManager.uint64_type;
2339 case TypeCode.Single:
2340 return TypeManager.float_type;
2341 case TypeCode.Double:
2342 return TypeManager.double_type;
2343 case TypeCode.String:
2344 return TypeManager.string_type;
2345 case TypeCode.Decimal:
2346 return TypeManager.decimal_type;
2347 default:
2348 if (t == typeof (void))
2349 return TypeManager.void_type;
2350 if (t == typeof (object))
2351 return TypeManager.object_type;
2352 if (t == typeof (System.Type))
2353 return TypeManager.type_type;
2354 if (t == typeof (System.IntPtr))
2355 return TypeManager.intptr_type;
2356 return t;
2360 /// <summary>
2361 /// Utility function that can be used to probe whether a type
2362 /// is managed or not.
2363 /// </summary>
2364 public static bool VerifyUnManaged (Type t, Location loc)
2366 if (IsUnmanagedType (t))
2367 return true;
2369 Report.Error (208, loc, "Cannot take the address of, get the size of, or declare a pointer to a managed type `{0}'",
2370 CSharpName (t));
2372 return false;
2375 /// <summary>
2376 /// Returns the name of the indexer in a given type.
2377 /// </summary>
2378 /// <remarks>
2379 /// The default is not always `Item'. The user can change this behaviour by
2380 /// using the IndexerNameAttribute in the container.
2382 /// For example, the String class indexer is named `Chars' not `Item'
2383 /// </remarks>
2384 public static string IndexerPropertyName (Type t)
2386 t = DropGenericTypeArguments (t);
2387 if (t is TypeBuilder) {
2388 TypeContainer tc = t.IsInterface ? LookupInterface (t) : LookupTypeContainer (t);
2389 return tc == null ? TypeContainer.DefaultIndexerName : tc.IndexerName;
2392 System.Attribute attr = System.Attribute.GetCustomAttribute (
2393 t, TypeManager.default_member_type);
2394 if (attr != null){
2395 DefaultMemberAttribute dma = (DefaultMemberAttribute) attr;
2396 return dma.MemberName;
2399 return TypeContainer.DefaultIndexerName;
2402 static MethodInfo declare_local_method = null;
2404 public static LocalBuilder DeclareLocalPinned (ILGenerator ig, Type t)
2406 if (declare_local_method == null){
2407 declare_local_method = typeof (ILGenerator).GetMethod (
2408 "DeclareLocal",
2409 BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic,
2410 null,
2411 new Type [] { typeof (Type), typeof (bool)},
2412 null);
2413 if (declare_local_method == null){
2414 Report.RuntimeMissingSupport (Location.Null, "pinned local variables");
2415 return ig.DeclareLocal (t);
2418 return (LocalBuilder) declare_local_method.Invoke (ig, new object [] { t, true });
2421 private static bool IsSignatureEqual (Type a, Type b)
2424 /// Consider the following example (bug #77674):
2426 /// public abstract class A
2427 /// {
2428 /// public abstract T Foo<T> ();
2429 /// }
2431 /// public abstract class B : A
2432 /// {
2433 /// public override U Foo<T> ()
2434 /// { return default (U); }
2435 /// }
2437 /// Here, `T' and `U' are method type parameters from different methods
2438 /// (A.Foo and B.Foo), so both `==' and Equals() will fail.
2440 /// However, since we're determining whether B.Foo() overrides A.Foo(),
2441 /// we need to do a signature based comparision and consider them equal.
2443 if (a == b)
2444 return true;
2446 if (a.IsGenericParameter && b.IsGenericParameter &&
2447 (a.DeclaringMethod != null) && (b.DeclaringMethod != null)) {
2448 return a.GenericParameterPosition == b.GenericParameterPosition;
2451 if (a.IsArray && b.IsArray) {
2452 if (a.GetArrayRank () != b.GetArrayRank ())
2453 return false;
2455 return IsSignatureEqual (a.GetElementType (), b.GetElementType ());
2458 if (a.IsByRef && b.IsByRef)
2459 return IsSignatureEqual (a.GetElementType (), b.GetElementType ());
2461 if (a.IsGenericType && b.IsGenericType) {
2462 if (a.GetGenericTypeDefinition () != b.GetGenericTypeDefinition ())
2463 return false;
2465 Type[] aargs = a.GetGenericArguments ();
2466 Type[] bargs = b.GetGenericArguments ();
2468 if (aargs.Length != bargs.Length)
2469 return false;
2471 for (int i = 0; i < aargs.Length; i++) {
2472 if (!IsSignatureEqual (aargs [i], bargs [i]))
2473 return false;
2476 return true;
2479 return false;
2483 // Returns whether the array of memberinfos contains the given method
2485 public static bool ArrayContainsMethod (MemberInfo [] array, MethodBase new_method)
2487 Type [] new_args = TypeManager.GetParameterData (new_method).Types;
2489 foreach (MethodBase method in array) {
2490 if (method.Name != new_method.Name)
2491 continue;
2493 if (method is MethodInfo && new_method is MethodInfo)
2494 if (!IsSignatureEqual (((MethodInfo) method).ReturnType,
2495 ((MethodInfo) new_method).ReturnType))
2496 continue;
2499 Type [] old_args = TypeManager.GetParameterData (method).Types;
2500 int old_count = old_args.Length;
2501 int i;
2503 if (new_args.Length != old_count)
2504 continue;
2506 for (i = 0; i < old_count; i++){
2507 if (!IsSignatureEqual (old_args [i], new_args [i]))
2508 break;
2510 if (i != old_count)
2511 continue;
2513 return true;
2516 return false;
2520 // We copy methods from `new_members' into `target_list' if the signature
2521 // for the method from in the new list does not exist in the target_list
2523 // The name is assumed to be the same.
2525 public static ArrayList CopyNewMethods (ArrayList target_list, IList new_members)
2527 if (target_list == null){
2528 target_list = new ArrayList ();
2530 foreach (MemberInfo mi in new_members){
2531 if (mi is MethodBase)
2532 target_list.Add (mi);
2534 return target_list;
2537 MemberInfo [] target_array = new MemberInfo [target_list.Count];
2538 target_list.CopyTo (target_array, 0);
2540 foreach (MemberInfo mi in new_members){
2541 MethodBase new_method = (MethodBase) mi;
2543 if (!ArrayContainsMethod (target_array, new_method))
2544 target_list.Add (new_method);
2546 return target_list;
2549 // This method always return false for non-generic compiler,
2550 // while Type.IsGenericParameter is returned if it is supported.
2551 public static bool IsGenericParameter (Type type)
2553 return type.IsGenericParameter;
2556 public static int GenericParameterPosition (Type type)
2558 return type.GenericParameterPosition;
2561 #region MemberLookup implementation
2564 // Whether we allow private members in the result (since FindMembers
2565 // uses NonPublic for both protected and private), we need to distinguish.
2568 internal class Closure {
2569 internal bool private_ok;
2571 // Who is invoking us and which type is being queried currently.
2572 internal Type invocation_type;
2573 internal Type qualifier_type;
2575 // The assembly that defines the type is that is calling us
2576 internal Assembly invocation_assembly;
2577 internal IList almost_match;
2579 private bool CheckValidFamilyAccess (bool is_static, MemberInfo m)
2581 if (invocation_type == null)
2582 return false;
2584 if (is_static && qualifier_type == null)
2585 // It resolved from a simple name, so it should be visible.
2586 return true;
2588 // A nested class has access to all the protected members visible to its parent.
2589 if (qualifier_type != null && TypeManager.IsNestedChildOf (invocation_type, qualifier_type))
2590 return true;
2592 if (IsNestedFamilyAccessible (invocation_type, m.DeclaringType)) {
2593 // Although a derived class can access protected members of its base class
2594 // it cannot do so through an instance of the base class (CS1540).
2595 // => Ancestry should be: declaring_type ->* invocation_type ->* qualified_type
2596 if (is_static ||
2597 qualifier_type == null ||
2598 IsInstantiationOfSameGenericType (invocation_type, qualifier_type) ||
2599 !IsFamilyAccessible (invocation_type, qualifier_type) ||
2600 IsNestedChildOf (invocation_type, qualifier_type))
2601 return true;
2604 if (almost_match != null)
2605 almost_match.Add (m);
2607 return false;
2611 // This filter filters by name + whether it is ok to include private
2612 // members in the search
2614 internal bool Filter (MemberInfo m, object filter_criteria)
2617 // Hack: we know that the filter criteria will always be in the
2618 // `closure' // fields.
2621 if ((filter_criteria != null) && (m.Name != (string) filter_criteria))
2622 return false;
2624 if (((qualifier_type == null) || (qualifier_type == invocation_type)) &&
2625 (invocation_type != null) &&
2626 IsPrivateAccessible (m.DeclaringType, invocation_type))
2627 return true;
2630 // Ugly: we need to find out the type of `m', and depending
2631 // on this, tell whether we accept or not
2633 if (m is MethodBase){
2634 MethodBase mb = (MethodBase) m;
2635 MethodAttributes ma = mb.Attributes & MethodAttributes.MemberAccessMask;
2637 if (ma == MethodAttributes.Public)
2638 return true;
2640 if (ma == MethodAttributes.Private)
2641 return private_ok ||
2642 IsPrivateAccessible (invocation_type, m.DeclaringType) ||
2643 IsNestedChildOf (invocation_type, m.DeclaringType);
2645 if (invocation_assembly == mb.DeclaringType.Assembly ||
2646 TypeManager.IsFriendAssembly (mb.DeclaringType.Assembly)) {
2647 if (ma == MethodAttributes.Assembly || ma == MethodAttributes.FamORAssem)
2648 return true;
2649 } else {
2650 if (ma == MethodAttributes.Assembly || ma == MethodAttributes.FamANDAssem)
2651 return false;
2654 // Family, FamORAssem or FamANDAssem
2655 return CheckValidFamilyAccess (mb.IsStatic, m);
2658 if (m is FieldInfo){
2659 FieldInfo fi = (FieldInfo) m;
2660 FieldAttributes fa = fi.Attributes & FieldAttributes.FieldAccessMask;
2662 if (fa == FieldAttributes.Public)
2663 return true;
2665 if (fa == FieldAttributes.Private)
2666 return private_ok ||
2667 IsPrivateAccessible (invocation_type, m.DeclaringType) ||
2668 IsNestedChildOf (invocation_type, m.DeclaringType);
2670 if (invocation_assembly == fi.DeclaringType.Assembly ||
2671 TypeManager.IsFriendAssembly (fi.DeclaringType.Assembly)) {
2672 if (fa == FieldAttributes.Assembly || fa == FieldAttributes.FamORAssem)
2673 return true;
2674 } else {
2675 if (fa == FieldAttributes.Assembly || fa == FieldAttributes.FamANDAssem)
2676 return false;
2679 // Family, FamORAssem or FamANDAssem
2680 return CheckValidFamilyAccess (fi.IsStatic, m);
2684 // EventInfos and PropertyInfos, return true because they lack
2685 // permission information, so we need to check later on the methods.
2687 return true;
2691 static Closure closure = new Closure ();
2692 static MemberFilter FilterWithClosure_delegate = new MemberFilter (closure.Filter);
2695 // Looks up a member called `name' in the `queried_type'. This lookup
2696 // is done by code that is contained in the definition for `invocation_type'
2697 // through a qualifier of type `qualifier_type' (or null if there is no qualifier).
2699 // `invocation_type' is used to check whether we're allowed to access the requested
2700 // member wrt its protection level.
2702 // When called from MemberAccess, `qualifier_type' is the type which is used to access
2703 // the requested member (`class B { A a = new A (); a.foo = 5; }'; here invocation_type
2704 // is B and qualifier_type is A). This is used to do the CS1540 check.
2706 // When resolving a SimpleName, `qualifier_type' is null.
2708 // The `qualifier_type' is used for the CS1540 check; it's normally either null or
2709 // the same than `queried_type' - except when we're being called from BaseAccess;
2710 // in this case, `invocation_type' is the current type and `queried_type' the base
2711 // type, so this'd normally trigger a CS1540.
2713 // The binding flags are `bf' and the kind of members being looked up are `mt'
2715 // The return value always includes private members which code in `invocation_type'
2716 // is allowed to access (using the specified `qualifier_type' if given); only use
2717 // BindingFlags.NonPublic to bypass the permission check.
2719 // The 'almost_match' argument is used for reporting error CS1540.
2721 // Returns an array of a single element for everything but Methods/Constructors
2722 // that might return multiple matches.
2724 public static MemberInfo [] MemberLookup (Type invocation_type, Type qualifier_type,
2725 Type queried_type, MemberTypes mt,
2726 BindingFlags original_bf, string name, IList almost_match)
2728 Timer.StartTimer (TimerType.MemberLookup);
2730 MemberInfo[] retval = RealMemberLookup (invocation_type, qualifier_type,
2731 queried_type, mt, original_bf, name, almost_match);
2733 Timer.StopTimer (TimerType.MemberLookup);
2735 return retval;
2738 static MemberInfo [] RealMemberLookup (Type invocation_type, Type qualifier_type,
2739 Type queried_type, MemberTypes mt,
2740 BindingFlags original_bf, string name, IList almost_match)
2742 BindingFlags bf = original_bf;
2744 ArrayList method_list = null;
2745 Type current_type = queried_type;
2746 bool searching = (original_bf & BindingFlags.DeclaredOnly) == 0;
2747 bool skip_iface_check = true, used_cache = false;
2748 bool always_ok_flag = invocation_type != null && IsNestedChildOf (invocation_type, queried_type);
2750 closure.invocation_type = invocation_type;
2751 closure.invocation_assembly = invocation_type != null ? invocation_type.Assembly : null;
2752 closure.qualifier_type = qualifier_type;
2753 closure.almost_match = almost_match;
2755 // This is from the first time we find a method
2756 // in most cases, we do not actually find a method in the base class
2757 // so we can just ignore it, and save the arraylist allocation
2758 MemberInfo [] first_members_list = null;
2759 bool use_first_members_list = false;
2761 do {
2762 MemberInfo [] list;
2765 // `NonPublic' is lame, because it includes both protected and
2766 // private methods, so we need to control this behavior by
2767 // explicitly tracking if a private method is ok or not.
2769 // The possible cases are:
2770 // public, private and protected (internal does not come into the
2771 // equation)
2773 if ((invocation_type != null) &&
2774 ((invocation_type == current_type) ||
2775 IsNestedChildOf (invocation_type, current_type)) ||
2776 always_ok_flag)
2777 bf = original_bf | BindingFlags.NonPublic;
2778 else
2779 bf = original_bf;
2781 closure.private_ok = (original_bf & BindingFlags.NonPublic) != 0;
2783 Timer.StopTimer (TimerType.MemberLookup);
2785 list = MemberLookup_FindMembers (
2786 current_type, mt, bf, name, out used_cache);
2788 Timer.StartTimer (TimerType.MemberLookup);
2791 // When queried for an interface type, the cache will automatically check all
2792 // inherited members, so we don't need to do this here. However, this only
2793 // works if we already used the cache in the first iteration of this loop.
2795 // If we used the cache in any further iteration, we can still terminate the
2796 // loop since the cache always looks in all base classes.
2799 if (used_cache)
2800 searching = false;
2801 else
2802 skip_iface_check = false;
2804 if (current_type == TypeManager.object_type)
2805 searching = false;
2806 else {
2807 current_type = current_type.BaseType;
2810 // This happens with interfaces, they have a null
2811 // basetype. Look members up in the Object class.
2813 if (current_type == null) {
2814 current_type = TypeManager.object_type;
2815 searching = true;
2819 if (list.Length == 0)
2820 continue;
2823 // Events and types are returned by both `static' and `instance'
2824 // searches, which means that our above FindMembers will
2825 // return two copies of the same.
2827 if (list.Length == 1 && !(list [0] is MethodBase)){
2828 return list;
2832 // Multiple properties: we query those just to find out the indexer
2833 // name
2835 if (list [0] is PropertyInfo)
2836 return list;
2839 // We found an event: the cache lookup returns both the event and
2840 // its private field.
2842 if (list [0] is EventInfo) {
2843 if ((list.Length == 2) && (list [1] is FieldInfo))
2844 return new MemberInfo [] { list [0] };
2846 // Oooops
2847 return null;
2851 // We found methods, turn the search into "method scan"
2852 // mode.
2855 if (first_members_list != null) {
2856 if (use_first_members_list) {
2857 method_list = CopyNewMethods (method_list, first_members_list);
2858 use_first_members_list = false;
2861 method_list = CopyNewMethods (method_list, list);
2862 } else {
2863 first_members_list = list;
2864 use_first_members_list = true;
2866 mt &= (MemberTypes.Method | MemberTypes.Constructor);
2868 } while (searching);
2870 if (use_first_members_list) {
2871 foreach (MemberInfo mi in first_members_list) {
2872 if (! (mi is MethodBase)) {
2873 method_list = CopyNewMethods (method_list, first_members_list);
2874 return (MemberInfo []) method_list.ToArray (typeof (MemberInfo));
2877 return (MemberInfo []) first_members_list;
2880 if (method_list != null && method_list.Count > 0) {
2881 return (MemberInfo []) method_list.ToArray (typeof (MemberInfo));
2884 // This happens if we already used the cache in the first iteration, in this case
2885 // the cache already looked in all interfaces.
2887 if (skip_iface_check)
2888 return null;
2891 // Interfaces do not list members they inherit, so we have to
2892 // scan those.
2894 if (!queried_type.IsInterface)
2895 return null;
2897 if (queried_type.IsArray)
2898 queried_type = TypeManager.array_type;
2900 Type [] ifaces = GetInterfaces (queried_type);
2901 if (ifaces == null)
2902 return null;
2904 foreach (Type itype in ifaces){
2905 MemberInfo [] x;
2907 x = MemberLookup (null, null, itype, mt, bf, name, null);
2908 if (x != null)
2909 return x;
2912 return null;
2915 // Tests whether external method is really special
2916 public static bool IsSpecialMethod (MethodBase mb)
2918 string name = mb.Name;
2919 if (name.StartsWith ("get_") || name.StartsWith ("set_"))
2920 return mb.DeclaringType.GetProperty (name.Substring (4)) != null;
2922 if (name.StartsWith ("add_"))
2923 return mb.DeclaringType.GetEvent (name.Substring (4)) != null;
2925 if (name.StartsWith ("remove_"))
2926 return mb.DeclaringType.GetEvent (name.Substring (7)) != null;
2928 if (name.StartsWith ("op_")){
2929 foreach (string oname in Unary.oper_names) {
2930 if (oname == name)
2931 return true;
2934 foreach (string oname in Binary.oper_names) {
2935 if (oname == name)
2936 return true;
2939 return false;
2942 #endregion
2946 /// <summary>
2947 /// There is exactly one instance of this class per type.
2948 /// </summary>
2949 public sealed class TypeHandle : IMemberContainer {
2950 public readonly IMemberContainer BaseType;
2952 readonly int id = ++next_id;
2953 static int next_id = 0;
2955 static TypeHandle ()
2957 Reset ();
2960 /// <summary>
2961 /// Lookup a TypeHandle instance for the given type. If the type doesn't have
2962 /// a TypeHandle yet, a new instance of it is created. This static method
2963 /// ensures that we'll only have one TypeHandle instance per type.
2964 /// </summary>
2965 private static TypeHandle GetTypeHandle (Type t)
2967 TypeHandle handle = (TypeHandle) type_hash [t];
2968 if (handle != null)
2969 return handle;
2971 handle = new TypeHandle (t);
2972 type_hash.Add (t, handle);
2973 return handle;
2976 public static MemberCache GetMemberCache (Type t)
2978 return GetTypeHandle (t).MemberCache;
2981 public static void CleanUp ()
2983 type_hash = null;
2986 public static void Reset ()
2988 type_hash = new PtrHashtable ();
2991 /// <summary>
2992 /// Returns the TypeHandle for TypeManager.object_type.
2993 /// </summary>
2994 public static IMemberContainer ObjectType {
2995 get {
2996 if (object_type != null)
2997 return object_type;
2999 object_type = GetTypeHandle (TypeManager.object_type);
3001 return object_type;
3005 /// <summary>
3006 /// Returns the TypeHandle for TypeManager.array_type.
3007 /// </summary>
3008 public static IMemberContainer ArrayType {
3009 get {
3010 if (array_type != null)
3011 return array_type;
3013 array_type = GetTypeHandle (TypeManager.array_type);
3015 return array_type;
3019 private static PtrHashtable type_hash;
3021 private static TypeHandle object_type = null;
3022 private static TypeHandle array_type = null;
3024 private Type type;
3025 private string full_name;
3026 private bool is_interface;
3027 private MemberCache member_cache;
3028 private MemberCache base_cache;
3030 private TypeHandle (Type type)
3032 this.type = type;
3033 full_name = type.FullName != null ? type.FullName : type.Name;
3034 if (type.BaseType != null) {
3035 base_cache = TypeManager.LookupMemberCache (type.BaseType);
3036 BaseType = base_cache.Container;
3037 } else if (type.IsInterface)
3038 base_cache = TypeManager.LookupBaseInterfacesCache (type);
3039 this.is_interface = type.IsInterface || type.IsGenericParameter;
3040 this.member_cache = new MemberCache (this);
3043 // IMemberContainer methods
3045 public string Name {
3046 get {
3047 return full_name;
3051 public Type Type {
3052 get {
3053 return type;
3057 public MemberCache BaseCache {
3058 get {
3059 return base_cache;
3063 public bool IsInterface {
3064 get {
3065 return is_interface;
3069 public MemberList GetMembers (MemberTypes mt, BindingFlags bf)
3071 MemberInfo [] members;
3072 if (type is GenericTypeParameterBuilder)
3073 return MemberList.Empty;
3074 if (mt == MemberTypes.Event)
3075 members = type.GetEvents (bf | BindingFlags.DeclaredOnly);
3076 else
3077 members = type.FindMembers (mt, bf | BindingFlags.DeclaredOnly,
3078 null, null);
3079 Array.Reverse (members);
3081 return new MemberList (members);
3084 // IMemberFinder methods
3086 public MemberList FindMembers (MemberTypes mt, BindingFlags bf, string name,
3087 MemberFilter filter, object criteria)
3089 return new MemberList (member_cache.FindMembers (mt, bf, name, filter, criteria));
3092 public MemberCache MemberCache {
3093 get {
3094 return member_cache;
3098 public override string ToString ()
3100 if (BaseType != null)
3101 return "TypeHandle (" + id + "," + Name + " : " + BaseType + ")";
3102 else
3103 return "TypeHandle (" + id + "," + Name + ")";