413eba518117fbf00d115f9d20286acdce5d346c
[mono.git] / mcs / mcs / decl.cs
1 //
2 // decl.cs: Declaration base class for structs, classes, enums and interfaces.
3 //
4 // Author: Miguel de Icaza (miguel@gnu.org)
5 //         Marek Safar (marek.safar@seznam.cz)
6 //
7 // Licensed under the terms of the GNU GPL
8 //
9 // (C) 2001 Ximian, Inc (http://www.ximian.com)
10 // (C) 2004 Novell, Inc
11 //
12 // TODO: Move the method verification stuff from the class.cs and interface.cs here
13 //
14
15 using System;
16 using System.Text;
17 using System.Collections;
18 using System.Globalization;
19 using System.Reflection.Emit;
20 using System.Reflection;
21
22 #if BOOTSTRAP_WITH_OLDLIB
23 using XmlElement = System.Object;
24 #else
25 using System.Xml;
26 #endif
27
28 namespace Mono.CSharp {
29
30         public class MemberName {
31                 public readonly string Name;
32                 public readonly TypeArguments TypeArguments;
33
34                 public readonly MemberName Left;
35                 public readonly Location Location;
36
37                 public static readonly MemberName Null = new MemberName ("");
38
39                 bool is_double_colon;
40
41                 private MemberName (MemberName left, string name, bool is_double_colon,
42                                     Location loc)
43                 {
44                         this.Name = name;
45                         this.Location = loc;
46                         this.is_double_colon = is_double_colon;
47                         this.Left = left;
48                 }
49
50                 private MemberName (MemberName left, string name, bool is_double_colon,
51                                     TypeArguments args, Location loc)
52                         : this (left, name, is_double_colon, loc)
53                 {
54                         this.TypeArguments = args;
55                 }
56
57                 public MemberName (string name)
58                         : this (name, Location.Null)
59                 { }
60
61                 public MemberName (string name, Location loc)
62                         : this (null, name, false, loc)
63                 { }
64
65                 public MemberName (string name, TypeArguments args, Location loc)
66                         : this (null, name, false, args, loc)
67                 { }
68
69                 public MemberName (MemberName left, string name)
70                         : this (left, name, left != null ? left.Location : Location.Null)
71                 { }
72
73                 public MemberName (MemberName left, string name, Location loc)
74                         : this (left, name, false, loc)
75                 { }
76
77                 public MemberName (MemberName left, string name, TypeArguments args, Location loc)
78                         : this (left, name, false, args, loc)
79                 { }
80
81                 public MemberName (string alias, string name, Location loc)
82                         : this (new MemberName (alias, loc), name, true, loc)
83                 { }
84
85                 public MemberName (MemberName left, MemberName right)
86                         : this (left, right, right.Location)
87                 { }
88
89                 public MemberName (MemberName left, MemberName right, Location loc)
90                         : this (null, right.Name, false, right.TypeArguments, loc)
91                 {
92                         if (right.is_double_colon)
93                                 throw new InternalErrorException ("Cannot append double_colon member name");
94                         this.Left = (right.Left == null) ? left : new MemberName (left, right.Left);
95                 }
96
97                 public string GetName ()
98                 {
99                         return GetName (false);
100                 }
101
102                 public bool IsGeneric {
103                         get {
104                                 if (TypeArguments != null)
105                                         return true;
106                                 else if (Left != null)
107                                         return Left.IsGeneric;
108                                 else
109                                         return false;
110                         }
111                 }
112
113                 public string GetName (bool is_generic)
114                 {
115                         string name = is_generic ? Basename : Name;
116                         string connect = is_double_colon ? "::" : ".";
117                         if (Left != null)
118                                 return Left.GetName (is_generic) + connect + name;
119                         else
120                                 return name;
121                 }
122
123                 public string GetTypeName ()
124                 {
125                         string connect = is_double_colon ? "::" : ".";
126                         if (Left != null)
127                                 return Left.GetTypeName () + connect + MakeName (Name, TypeArguments);
128                         else
129                                 return MakeName (Name, TypeArguments);
130                 }
131
132                 public Expression GetTypeExpression ()
133                 {
134 #if GMCS_SOURCE
135                         if (IsUnbound) {
136                                 if (!CheckUnbound (Location))
137                                         return null;
138
139                                 return new UnboundTypeExpression (this, Location);
140                         }
141 #endif
142
143                         if (Left == null) {
144                                 if (TypeArguments != null)
145                                         return new SimpleName (Basename, TypeArguments, Location);
146                                 else
147                                 return new SimpleName (Name, Location);
148                         }
149
150                         if (is_double_colon) {
151                                 if (Left.Left != null)
152                                         throw new InternalErrorException ("The left side of a :: should be an identifier");
153                                 return new QualifiedAliasMember (Left.Name, Name, Location);
154                         }
155
156                         Expression lexpr = Left.GetTypeExpression ();
157                         return new MemberAccess (lexpr, Name, TypeArguments, Location);
158                 }
159
160                 public MemberName Clone ()
161                 {
162                         MemberName left_clone = Left == null ? null : Left.Clone ();
163                         return new MemberName (left_clone, Name, is_double_colon, TypeArguments, Location);
164                 }
165
166                 public string Basename {
167                         get {
168                                 if (TypeArguments != null)
169                                         return MakeName (Name, TypeArguments);
170                                 else
171                                         return Name;
172                         }
173                 }
174
175                 public string FullName {
176                         get {
177                                 if (TypeArguments != null)
178                                         return Name + "<" + TypeArguments + ">";
179                                 else
180                                         return Name;
181                         }
182                 }
183
184                 public string MethodName {
185                         get {
186                                 string connect = is_double_colon ? "::" : ".";
187                                 if (Left != null)
188                                         return Left.FullName + connect + Name;
189                                 else
190                                         return Name;
191                         }
192                 }
193
194                 public override string ToString ()
195                 {
196                         string connect = is_double_colon ? "::" : ".";
197                         if (Left != null)
198                                 return Left.FullName + connect + FullName;
199                         else
200                                 return FullName;
201                 }
202
203                 public override bool Equals (object other)
204                 {
205                         return Equals (other as MemberName);
206                 }
207
208                 public bool Equals (MemberName other)
209                 {
210                         if (this == other)
211                                 return true;
212                         if (other == null || Name != other.Name)
213                                 return false;
214                         if (is_double_colon != other.is_double_colon)
215                                 return false;
216
217                         if ((TypeArguments != null) &&
218                             (other.TypeArguments == null || TypeArguments.Count != other.TypeArguments.Count))
219                                 return false;
220
221                         if ((TypeArguments == null) && (other.TypeArguments != null))
222                                 return false;
223
224                         if (Left == null)
225                                 return other.Left == null;
226
227                         return Left.Equals (other.Left);
228                 }
229
230                 public override int GetHashCode ()
231                 {
232                         int hash = Name.GetHashCode ();
233                         for (MemberName n = Left; n != null; n = n.Left)
234                                 hash ^= n.Name.GetHashCode ();
235                         if (is_double_colon)
236                                 hash ^= 0xbadc01d;
237
238                         if (TypeArguments != null)
239                                 hash ^= TypeArguments.Count << 5;
240
241                         return hash & 0x7FFFFFFF;
242                 }
243
244                 public int CountTypeArguments {
245                         get {
246                                 if (TypeArguments == null)
247                                         return 0;
248                                 else
249                                         return TypeArguments.Count;
250                         }
251                 }
252
253                 public static string MakeName (string name, TypeArguments args)
254                 {
255                         if (args == null)
256                                 return name;
257                         else
258                                 return name + "`" + args.Count;
259                 }
260
261                 public static string MakeName (string name, int count)
262                 {
263                         return name + "`" + count;
264                 }
265
266                 protected bool IsUnbound {
267                         get {
268                                 if ((Left != null) && Left.IsUnbound)
269                                         return true;
270                                 else if (TypeArguments == null)
271                                         return false;
272                                 else
273                                         return TypeArguments.IsUnbound;
274                         }
275                 }
276
277                 protected bool CheckUnbound (Location loc)
278                 {
279                         if ((Left != null) && !Left.CheckUnbound (loc))
280                                 return false;
281                         if ((TypeArguments != null) && !TypeArguments.IsUnbound) {
282                                 Report.Error (1031, loc, "Type expected");
283                                 return false;
284                         }
285
286                         return true;
287                 }
288         }
289
290         /// <summary>
291         ///   Base representation for members.  This is used to keep track
292         ///   of Name, Location and Modifier flags, and handling Attributes.
293         /// </summary>
294         public abstract class MemberCore : Attributable, IResolveContext {
295                 /// <summary>
296                 ///   Public name
297                 /// </summary>
298
299                 protected string cached_name;
300                 public string Name {
301                         get {
302                                 if (cached_name == null)
303                                         cached_name = MemberName.GetName (!(this is GenericMethod) && !(this is Method));
304                                 return cached_name;
305                         }
306                 }
307
308                 // Is not readonly because of IndexerName attribute
309                 private MemberName member_name;
310                 public MemberName MemberName {
311                         get { return member_name; }
312                 }
313
314                 /// <summary>
315                 ///   Modifier flags that the user specified in the source code
316                 /// </summary>
317                 public int ModFlags;
318
319                 public readonly DeclSpace Parent;
320
321                 /// <summary>
322                 ///   Location where this declaration happens
323                 /// </summary>
324                 public Location Location {
325                         get { return member_name.Location; }
326                 }
327
328                 /// <summary>
329                 ///   XML documentation comment
330                 /// </summary>
331                 protected string comment;
332
333                 /// <summary>
334                 ///   Represents header string for documentation comment 
335                 ///   for each member types.
336                 /// </summary>
337                 public abstract string DocCommentHeader { get; }
338
339                 [Flags]
340                 public enum Flags {
341                         Obsolete_Undetected = 1,                // Obsolete attribute has not been detected yet
342                         Obsolete = 1 << 1,                      // Type has obsolete attribute
343                         ClsCompliance_Undetected = 1 << 2,      // CLS Compliance has not been detected yet
344                         ClsCompliant = 1 << 3,                  // Type is CLS Compliant
345                         CloseTypeCreated = 1 << 4,              // Tracks whether we have Closed the type
346                         HasCompliantAttribute_Undetected = 1 << 5,      // Presence of CLSCompliantAttribute has not been detected
347                         HasClsCompliantAttribute = 1 << 6,                      // Type has CLSCompliantAttribute
348                         ClsCompliantAttributeTrue = 1 << 7,                     // Type has CLSCompliant (true)
349                         Excluded_Undetected = 1 << 8,           // Conditional attribute has not been detected yet
350                         Excluded = 1 << 9,                                      // Method is conditional
351                         TestMethodDuplication = 1 << 10,                // Test for duplication must be performed
352                         IsUsed = 1 << 11,
353                         IsAssigned = 1 << 12,                           // Field is assigned
354                         HasExplicitLayout       = 1 << 13
355                 }
356
357                 /// <summary>
358                 ///   MemberCore flags at first detected then cached
359                 /// </summary>
360                 internal Flags caching_flags;
361
362                 public MemberCore (DeclSpace parent, MemberName name, Attributes attrs)
363                         : base (attrs)
364                 {
365                         this.Parent = parent;
366                         member_name = name;
367                         caching_flags = Flags.Obsolete_Undetected | Flags.ClsCompliance_Undetected | Flags.HasCompliantAttribute_Undetected | Flags.Excluded_Undetected;
368                 }
369
370                 protected virtual void SetMemberName (MemberName new_name)
371                 {
372                         member_name = new_name;
373                         cached_name = null;
374                 }
375
376                 public abstract bool Define ();
377
378                 public virtual string DocComment {
379                         get {
380                                 return comment;
381                         }
382                         set {
383                                 comment = value;
384                         }
385                 }
386
387                 // 
388                 // Returns full member name for error message
389                 //
390                 public virtual string GetSignatureForError ()
391                 {
392                         if (Parent == null || Parent.Parent == null)
393                                 return member_name.ToString ();
394
395                         return String.Concat (Parent.GetSignatureForError (), '.', member_name.ToString ());
396                 }
397
398                 /// <summary>
399                 /// Base Emit method. This is also entry point for CLS-Compliant verification.
400                 /// </summary>
401                 public virtual void Emit ()
402                 {
403                         if (!RootContext.VerifyClsCompliance)
404                                 return;
405
406                         VerifyClsCompliance ();
407                 }
408
409                 public virtual bool IsUsed {
410                         get { return (caching_flags & Flags.IsUsed) != 0; }
411                 }
412
413                 public void SetMemberIsUsed ()
414                 {
415                         caching_flags |= Flags.IsUsed;
416                 }
417
418                 /// <summary>
419                 /// Returns instance of ObsoleteAttribute for this MemberCore
420                 /// </summary>
421                 public virtual ObsoleteAttribute GetObsoleteAttribute ()
422                 {
423                         // ((flags & (Flags.Obsolete_Undetected | Flags.Obsolete)) == 0) is slower, but why ?
424                         if ((caching_flags & Flags.Obsolete_Undetected) == 0 && (caching_flags & Flags.Obsolete) == 0) {
425                                 return null;
426                         }
427
428                         caching_flags &= ~Flags.Obsolete_Undetected;
429
430                         if (OptAttributes == null)
431                                 return null;
432
433                         Attribute obsolete_attr = OptAttributes.Search (
434                                 TypeManager.obsolete_attribute_type);
435                         if (obsolete_attr == null)
436                                 return null;
437
438                         ObsoleteAttribute obsolete = obsolete_attr.GetObsoleteAttribute ();
439                         if (obsolete == null)
440                                 return null;
441
442                         caching_flags |= Flags.Obsolete;
443                         return obsolete;
444                 }
445
446                 /// <summary>
447                 /// Checks for ObsoleteAttribute presence. It's used for testing of all non-types elements
448                 /// </summary>
449                 public virtual void CheckObsoleteness (Location loc)
450                 {
451                         if (Parent != null)
452                                 Parent.CheckObsoleteness (loc);
453
454                         ObsoleteAttribute oa = GetObsoleteAttribute ();
455                         if (oa == null) {
456                                 return;
457                         }
458
459                         AttributeTester.Report_ObsoleteMessage (oa, GetSignatureForError (), loc);
460                 }
461
462                 /// <summary>
463                 /// Analyze whether CLS-Compliant verification must be execute for this MemberCore.
464                 /// </summary>
465                 public override bool IsClsComplianceRequired ()
466                 {
467                         if ((caching_flags & Flags.ClsCompliance_Undetected) == 0)
468                                 return (caching_flags & Flags.ClsCompliant) != 0;
469
470                         if (GetClsCompliantAttributeValue () && IsExposedFromAssembly ()) {
471                                 caching_flags &= ~Flags.ClsCompliance_Undetected;
472                                 caching_flags |= Flags.ClsCompliant;
473                                 return true;
474                         }
475
476                         caching_flags &= ~Flags.ClsCompliance_Undetected;
477                         return false;
478                 }
479
480                 /// <summary>
481                 /// Returns true when MemberCore is exposed from assembly.
482                 /// </summary>
483                 public bool IsExposedFromAssembly ()
484                 {
485                         if ((ModFlags & (Modifiers.PUBLIC | Modifiers.PROTECTED)) == 0)
486                                 return false;
487                         
488                         DeclSpace parentContainer = Parent;
489                         while (parentContainer != null && parentContainer.ModFlags != 0) {
490                                 if ((parentContainer.ModFlags & (Modifiers.PUBLIC | Modifiers.PROTECTED)) == 0)
491                                         return false;
492                                 parentContainer = parentContainer.Parent;
493                         }
494                         return true;
495                 }
496
497                 /// <summary>
498                 /// Goes through class hierarchy and gets value of first found CLSCompliantAttribute.
499                 /// If no is attribute exists then assembly CLSCompliantAttribute is returned.
500                 /// </summary>
501                 public virtual bool GetClsCompliantAttributeValue ()
502                 {
503                         if ((caching_flags & Flags.HasCompliantAttribute_Undetected) == 0)
504                                 return (caching_flags & Flags.ClsCompliantAttributeTrue) != 0;
505
506                         caching_flags &= ~Flags.HasCompliantAttribute_Undetected;
507
508                         if (OptAttributes != null) {
509                                 Attribute cls_attribute = OptAttributes.Search (
510                                         TypeManager.cls_compliant_attribute_type);
511                                 if (cls_attribute != null) {
512                                         caching_flags |= Flags.HasClsCompliantAttribute;
513                                         bool value = cls_attribute.GetClsCompliantAttributeValue ();
514                                         if (value)
515                                                 caching_flags |= Flags.ClsCompliantAttributeTrue;
516                                         return value;
517                                 }
518                         }
519
520                         if (Parent.GetClsCompliantAttributeValue ()) {
521                                 caching_flags |= Flags.ClsCompliantAttributeTrue;
522                                 return true;
523                         }
524                         return false;
525                 }
526
527                 /// <summary>
528                 /// Returns true if MemberCore is explicitly marked with CLSCompliantAttribute
529                 /// </summary>
530                 protected bool HasClsCompliantAttribute {
531                         get {
532                                 return (caching_flags & Flags.HasClsCompliantAttribute) != 0;
533                         }
534                 }
535
536                 /// <summary>
537                 /// It helps to handle error 102 & 111 detection
538                 /// </summary>
539                 public virtual bool MarkForDuplicationCheck ()
540                 {
541                         return false;
542                 }
543
544                 /// <summary>
545                 /// The main virtual method for CLS-Compliant verifications.
546                 /// The method returns true if member is CLS-Compliant and false if member is not
547                 /// CLS-Compliant which means that CLS-Compliant tests are not necessary. A descendants override it
548                 /// and add their extra verifications.
549                 /// </summary>
550                 protected virtual bool VerifyClsCompliance ()
551                 {
552                         if (!IsClsComplianceRequired ()) {
553                                 if (HasClsCompliantAttribute && RootContext.WarningLevel >= 2) {
554                                         if (!IsExposedFromAssembly ())
555                                                 Report.Warning (3019, 2, Location, "CLS compliance checking will not be performed on `{0}' because it is not visible from outside this assembly", GetSignatureForError ());
556                                         if (!CodeGen.Assembly.IsClsCompliant)
557                                                 Report.Warning (3021, 2, Location, "`{0}' does not need a CLSCompliant attribute because the assembly is not marked as CLS-compliant", GetSignatureForError ());
558                                 }
559                                 return false;
560                         }
561
562                         if (HasClsCompliantAttribute) {
563                                 if (CodeGen.Assembly.ClsCompliantAttribute == null && !CodeGen.Assembly.IsClsCompliant) {
564                                         Report.Error (3014, Location,
565                                                 "`{0}' cannot be marked as CLS-compliant because the assembly is not marked as CLS-compliant",
566                                                 GetSignatureForError ());
567                                         return false;
568                                 }
569
570                                 if (!Parent.IsClsComplianceRequired ()) {
571                                         Report.Warning (3018, 1, Location, "`{0}' cannot be marked as CLS-compliant because it is a member of non CLS-compliant type `{1}'", 
572                                                 GetSignatureForError (), Parent.GetSignatureForError ());
573                                         return false;
574                                 }
575                         }
576
577                         if (member_name.Name [0] == '_') {
578                                 Report.Error (3008, Location, "Identifier `{0}' is not CLS-compliant", GetSignatureForError () );
579                         }
580                         return true;
581                 }
582
583                 //
584                 // Raised (and passed an XmlElement that contains the comment)
585                 // when GenerateDocComment is writing documentation expectedly.
586                 //
587                 internal virtual void OnGenerateDocComment (XmlElement intermediateNode)
588                 {
589                 }
590
591                 //
592                 // Returns a string that represents the signature for this 
593                 // member which should be used in XML documentation.
594                 //
595                 public virtual string GetDocCommentName (DeclSpace ds)
596                 {
597                         if (ds == null || this is DeclSpace)
598                                 return DocCommentHeader + Name;
599                         else
600                                 return String.Concat (DocCommentHeader, ds.Name, ".", Name);
601                 }
602
603                 //
604                 // Generates xml doc comments (if any), and if required,
605                 // handle warning report.
606                 //
607                 internal virtual void GenerateDocComment (DeclSpace ds)
608                 {
609                         DocUtil.GenerateDocComment (this, ds);
610                 }
611
612                 public override IResolveContext ResolveContext {
613                         get { return this; }
614                 }
615
616                 #region IResolveContext Members
617
618                 public DeclSpace DeclContainer {
619                         get { return Parent; }
620                 }
621
622                 public virtual DeclSpace GenericDeclContainer {
623                         get { return DeclContainer; }
624                 }
625
626                 public bool IsInObsoleteScope {
627                         get {
628                                 if (GetObsoleteAttribute () != null)
629                                         return true;
630
631                                 return Parent == null ? false : Parent.IsInObsoleteScope;
632                         }
633                 }
634
635                 public bool IsInUnsafeScope {
636                         get {
637                                 if ((ModFlags & Modifiers.UNSAFE) != 0)
638                                         return true;
639
640                                 return Parent == null ? false : Parent.IsInUnsafeScope;
641                         }
642                 }
643
644                 #endregion
645         }
646
647         /// <summary>
648         ///   Base class for structs, classes, enumerations and interfaces.  
649         /// </summary>
650         /// <remarks>
651         ///   They all create new declaration spaces.  This
652         ///   provides the common foundation for managing those name
653         ///   spaces.
654         /// </remarks>
655         public abstract class DeclSpace : MemberCore {
656                 /// <summary>
657                 ///   This points to the actual definition that is being
658                 ///   created with System.Reflection.Emit
659                 /// </summary>
660                 public TypeBuilder TypeBuilder;
661
662                 /// <summary>
663                 ///   If we are a generic type, this is the type we are
664                 ///   currently defining.  We need to lookup members on this
665                 ///   instead of the TypeBuilder.
666                 /// </summary>
667                 public Type CurrentType;
668
669                 //
670                 // This is the namespace in which this typecontainer
671                 // was declared.  We use this to resolve names.
672                 //
673                 public NamespaceEntry NamespaceEntry;
674
675                 private Hashtable Cache = new Hashtable ();
676                 
677                 public readonly string Basename;
678                 
679                 protected Hashtable defined_names;
680
681                 public TypeContainer PartialContainer;          
682
683                 readonly bool is_generic;
684                 readonly int count_type_params;
685                 readonly int count_current_type_params;
686
687                 //
688                 // Whether we are Generic
689                 //
690                 public bool IsGeneric {
691                         get {
692                                 if (is_generic)
693                                         return true;
694                                 else if (Parent != null)
695                                         return Parent.IsGeneric;
696                                 else
697                                         return false;
698                         }
699                 }
700
701                 static string[] attribute_targets = new string [] { "type" };
702
703                 public DeclSpace (NamespaceEntry ns, DeclSpace parent, MemberName name,
704                                   Attributes attrs)
705                         : base (parent, name, attrs)
706                 {
707                         NamespaceEntry = ns;
708                         Basename = name.Basename;
709                         defined_names = new Hashtable ();
710                         PartialContainer = null;
711                         if (name.TypeArguments != null) {
712                                 is_generic = true;
713                                 count_type_params = count_current_type_params = name.TypeArguments.Count;
714                         }
715                         if (parent != null)
716                                 count_type_params += parent.count_type_params;
717                 }
718
719                 public override DeclSpace GenericDeclContainer {
720                         get { return this; }
721                 }
722
723                 /// <summary>
724                 /// Adds the member to defined_names table. It tests for duplications and enclosing name conflicts
725                 /// </summary>
726                 protected virtual bool AddToContainer (MemberCore symbol, string name)
727                 {
728                         MemberCore mc = (MemberCore) defined_names [name];
729
730                         if (mc == null) {
731                                 defined_names.Add (name, symbol);
732                                 return true;
733                         }
734
735                         if (symbol.MarkForDuplicationCheck () && mc.MarkForDuplicationCheck ())
736                                 return true;
737
738                         Report.SymbolRelatedToPreviousError (mc);
739                         if ((mc.ModFlags & Modifiers.PARTIAL) != 0 && (symbol is ClassOrStruct || symbol is Interface)) {
740                                 Error_MissingPartialModifier (symbol);
741                                 return false;
742                         }
743
744                         if (this is RootTypes) {
745                                 Report.Error (101, symbol.Location, 
746                                         "The namespace `{0}' already contains a definition for `{1}'",
747                                         ((DeclSpace)symbol).NamespaceEntry.GetSignatureForError (), symbol.MemberName.Name);
748                         } else if (symbol is TypeParameter) {
749                                 Report.Error (692, symbol.Location,
750                                               "Duplicate type parameter `{0}'", name);
751                         } else {
752                                 Report.Error (102, symbol.Location,
753                                               "The type `{0}' already contains a definition for `{1}'",
754                                               GetSignatureForError (), symbol.MemberName.Name);
755                         }
756
757                         return false;
758                 }
759
760                 /// <summary>
761                 ///   Returns the MemberCore associated with a given name in the declaration
762                 ///   space. It doesn't return method based symbols !!
763                 /// </summary>
764                 /// 
765                 public MemberCore GetDefinition (string name)
766                 {
767                         return (MemberCore)defined_names [name];
768                 }
769
770                 public bool IsStaticClass {
771                         get { return (ModFlags & Modifiers.STATIC) != 0; }
772                 }
773                 
774                 // 
775                 // root_types contains all the types.  All TopLevel types
776                 // hence have a parent that points to `root_types', that is
777                 // why there is a non-obvious test down here.
778                 //
779                 public bool IsTopLevel {
780                         get { return (Parent != null && Parent.Parent == null); }
781                 }
782
783                 public virtual void CloseType ()
784                 {
785                         if ((caching_flags & Flags.CloseTypeCreated) == 0){
786                                 try {
787                                         TypeBuilder.CreateType ();
788                                 } catch {
789                                         //
790                                         // The try/catch is needed because
791                                         // nested enumerations fail to load when they
792                                         // are defined.
793                                         //
794                                         // Even if this is the right order (enumerations
795                                         // declared after types).
796                                         //
797                                         // Note that this still creates the type and
798                                         // it is possible to save it
799                                 }
800                                 caching_flags |= Flags.CloseTypeCreated;
801                         }
802                 }
803
804                 protected virtual TypeAttributes TypeAttr {
805                         get { return CodeGen.Module.DefaultCharSetType; }
806                 }
807
808                 /// <remarks>
809                 ///  Should be overriten by the appropriate declaration space
810                 /// </remarks>
811                 public abstract TypeBuilder DefineType ();
812
813                 /// <summary>
814                 ///   Define all members, but don't apply any attributes or do anything which may
815                 ///   access not-yet-defined classes.  This method also creates the MemberCache.
816                 /// </summary>
817                 public virtual bool DefineMembers ()
818                 {
819                         if (((ModFlags & Modifiers.NEW) != 0) && IsTopLevel) {
820                                 Report.Error (1530, Location, "Keyword `new' is not allowed on namespace elements");
821                                 return false;
822                         }
823                         return true;
824                 }
825
826                 protected void Error_MissingPartialModifier (MemberCore type)
827                 {
828                         Report.Error (260, type.Location,
829                                 "Missing partial modifier on declaration of type `{0}'. Another partial declaration of this type exists",
830                                 type.GetSignatureForError ());
831                 }
832
833                 public override string GetSignatureForError ()
834                 {       
835                         if (IsGeneric) {
836                                 return SimpleName.RemoveGenericArity (Name) + TypeParameter.GetSignatureForError (CurrentTypeParameters);
837                         }
838                         // Parent.GetSignatureForError
839                         return Name;
840                 }
841                 
842                 public bool CheckAccessLevel (Type check_type)
843                 {
844                         TypeBuilder tb;
845                         if (this is GenericMethod)
846                                 tb = Parent.TypeBuilder;
847                         else
848                                 tb = TypeBuilder;
849
850                         check_type = TypeManager.DropGenericTypeArguments (check_type);
851                         if (check_type == tb)
852                                 return true;
853                         
854                         if (TypeBuilder == null)
855                                 // FIXME: TypeBuilder will be null when invoked by Class.GetNormalBases().
856                                 //        However, this is invoked again later -- so safe to return true.
857                                 //        May also be null when resolving top-level attributes.
858                                 return true;
859
860                         //
861                         // Broken Microsoft runtime, return public for arrays, no matter what 
862                         // the accessibility is for their underlying class, and they return 
863                         // NonPublic visibility for pointers
864                         //
865                         if (check_type.IsArray || check_type.IsPointer)
866                                 return CheckAccessLevel (TypeManager.GetElementType (check_type));
867
868                         if (TypeManager.IsGenericParameter(check_type))
869                                 return true; // FIXME
870
871                         TypeAttributes check_attr = check_type.Attributes & TypeAttributes.VisibilityMask;
872
873                         switch (check_attr){
874                         case TypeAttributes.Public:
875                                 return true;
876
877                         case TypeAttributes.NotPublic:
878
879                                 if (TypeBuilder == null)
880                                         // FIXME: TypeBuilder will be null when invoked by Class.GetNormalBases().
881                                         //        However, this is invoked again later -- so safe to return true.
882                                         //        May also be null when resolving top-level attributes.
883                                         return true;
884                                 //
885                                 // This test should probably use the declaringtype.
886                                 //
887                                 return check_type.Assembly == TypeBuilder.Assembly ||
888                                         TypeManager.IsFriendAssembly (check_type.Assembly);
889                                 
890                         case TypeAttributes.NestedPublic:
891                                 return true;
892
893                         case TypeAttributes.NestedPrivate:
894                                 return NestedAccessible (tb, check_type);
895
896                         case TypeAttributes.NestedFamily:
897                                 //
898                                 // Only accessible to methods in current type or any subtypes
899                                 //
900                                 return FamilyAccessible (tb, check_type);
901
902                         case TypeAttributes.NestedFamANDAssem:
903                                 return ((check_type.Assembly == tb.Assembly) || 
904                                                 TypeManager.IsFriendAssembly (check_type.Assembly)) && 
905                                         FamilyAccessible (tb, check_type);
906
907                         case TypeAttributes.NestedFamORAssem:
908                                 return (check_type.Assembly == tb.Assembly) ||
909                                         FamilyAccessible (tb, check_type) ||
910                                         TypeManager.IsFriendAssembly (check_type.Assembly);
911
912                         case TypeAttributes.NestedAssembly:
913                                 return check_type.Assembly == tb.Assembly ||
914                                         TypeManager.IsFriendAssembly (check_type.Assembly);
915                         }
916
917                         Console.WriteLine ("HERE: " + check_attr);
918                         return false;
919
920                 }
921
922                 protected bool NestedAccessible (Type tb, Type check_type)
923                 {
924                         Type declaring = check_type.DeclaringType;
925                         return TypeBuilder == declaring ||
926                                 TypeManager.IsNestedChildOf (TypeBuilder, declaring);
927                 }
928
929                 protected bool FamilyAccessible (Type tb, Type check_type)
930                 {
931                         Type declaring = check_type.DeclaringType;
932                         return TypeManager.IsNestedFamilyAccessible (TypeBuilder, declaring);
933                 }
934
935                 // Access level of a type.
936                 const int X = 1;
937                 enum AccessLevel { // Each column represents `is this scope larger or equal to Blah scope'
938                         // Public    Assembly   Protected
939                         Protected           = (0 << 0) | (0 << 1) | (X << 2),
940                         Public              = (X << 0) | (X << 1) | (X << 2),
941                         Private             = (0 << 0) | (0 << 1) | (0 << 2),
942                         Internal            = (0 << 0) | (X << 1) | (0 << 2),
943                         ProtectedOrInternal = (0 << 0) | (X << 1) | (X << 2),
944                 }
945                 
946                 static AccessLevel GetAccessLevelFromModifiers (int flags)
947                 {
948                         if ((flags & Modifiers.INTERNAL) != 0) {
949                                 
950                                 if ((flags & Modifiers.PROTECTED) != 0)
951                                         return AccessLevel.ProtectedOrInternal;
952                                 else
953                                         return AccessLevel.Internal;
954                                 
955                         } else if ((flags & Modifiers.PROTECTED) != 0)
956                                 return AccessLevel.Protected;
957                         else if ((flags & Modifiers.PRIVATE) != 0)
958                                 return AccessLevel.Private;
959                         else
960                                 return AccessLevel.Public;
961                 }
962
963                 // What is the effective access level of this?
964                 // TODO: Cache this?
965                 AccessLevel EffectiveAccessLevel {
966                         get {
967                                 AccessLevel myAccess = GetAccessLevelFromModifiers (ModFlags);
968                                 if (!IsTopLevel && (Parent != null))
969                                         return myAccess & Parent.EffectiveAccessLevel;
970                                 return myAccess;
971                         }
972                 }
973
974                 // Return the access level for type `t'
975                 static AccessLevel TypeEffectiveAccessLevel (Type t)
976                 {
977                         if (t.IsPublic)
978                                 return AccessLevel.Public;
979                         if (t.IsNestedPrivate)
980                                 return AccessLevel.Private;
981                         if (t.IsNotPublic)
982                                 return AccessLevel.Internal;
983                         
984                         // By now, it must be nested
985                         AccessLevel parentLevel = TypeEffectiveAccessLevel (t.DeclaringType);
986                         
987                         if (t.IsNestedPublic)
988                                 return parentLevel;
989                         if (t.IsNestedAssembly)
990                                 return parentLevel & AccessLevel.Internal;
991                         if (t.IsNestedFamily)
992                                 return parentLevel & AccessLevel.Protected;
993                         if (t.IsNestedFamORAssem)
994                                 return parentLevel & AccessLevel.ProtectedOrInternal;
995                         if (t.IsNestedFamANDAssem)
996                                 throw new NotImplementedException ("NestedFamANDAssem not implemented, cant make this kind of type from c# anyways");
997                         
998                         // nested private is taken care of
999                         
1000                         throw new Exception ("I give up, what are you?");
1001                 }
1002
1003                 //
1004                 // This answers `is the type P, as accessible as a member M which has the
1005                 // accessability @flags which is declared as a nested member of the type T, this declspace'
1006                 //
1007                 public bool AsAccessible (Type p, int flags)
1008                 {
1009                         //
1010                         // 1) if M is private, its accessability is the same as this declspace.
1011                         // we already know that P is accessible to T before this method, so we
1012                         // may return true.
1013                         //
1014                         
1015                         if ((flags & Modifiers.PRIVATE) != 0)
1016                                 return true;
1017                         
1018                         while (p.IsArray || p.IsPointer || p.IsByRef)
1019                                 p = TypeManager.GetElementType (p);
1020
1021 #if GMCS_SOURCE
1022                         if (p.IsGenericParameter)
1023                                 return true;
1024
1025                         if (TypeManager.IsGenericType (p)) {
1026                                 foreach (Type t in p.GetGenericArguments ()) {
1027                                         if (!AsAccessible (t, flags))
1028                                                 return false;
1029                                 }
1030                         }
1031 #endif
1032                         AccessLevel pAccess = TypeEffectiveAccessLevel (p);
1033                         AccessLevel mAccess = this.EffectiveAccessLevel &
1034                                 GetAccessLevelFromModifiers (flags);
1035                         
1036                         // for every place from which we can access M, we must
1037                         // be able to access P as well. So, we want
1038                         // For every bit in M and P, M_i -> P_1 == true
1039                         // or, ~ (M -> P) == 0 <-> ~ ( ~M | P) == 0
1040                         
1041                         return ~ (~ mAccess | pAccess) == 0;
1042                 }
1043
1044                 private Type LookupNestedTypeInHierarchy (string name)
1045                 {
1046                         // if the member cache has been created, lets use it.
1047                         // the member cache is MUCH faster.
1048                         if (MemberCache != null)
1049                                 return MemberCache.FindNestedType (name);
1050
1051                         // no member cache. Do it the hard way -- reflection
1052                         Type t = null;
1053                         for (Type current_type = TypeBuilder;
1054                              current_type != null && current_type != TypeManager.object_type;
1055                              current_type = current_type.BaseType) {
1056                                 current_type = TypeManager.DropGenericTypeArguments (current_type);
1057                                 if (current_type is TypeBuilder) {
1058                                         TypeContainer tc = current_type == TypeBuilder
1059                                                 ? PartialContainer
1060                                                 : TypeManager.LookupTypeContainer (current_type);
1061                                         if (tc != null)
1062                                                 t = tc.FindNestedType (name);
1063                                 } else {
1064                                         t = TypeManager.GetNestedType (current_type, name);
1065                                 }
1066
1067                                 if (t != null && CheckAccessLevel (t))
1068                                         return t;
1069                         }
1070
1071                         return null;
1072                 }
1073
1074                 public virtual ExtensionMethodGroupExpr LookupExtensionMethod (Type extensionType, string name)
1075                 {
1076                         return NamespaceEntry.LookupExtensionMethod (extensionType, true, name);
1077                 }
1078
1079                 //
1080                 // Public function used to locate types.
1081                 //
1082                 // Set 'ignore_cs0104' to true if you want to ignore cs0104 errors.
1083                 //
1084                 // Returns: Type or null if they type can not be found.
1085                 //
1086                 public FullNamedExpression LookupNamespaceOrType (string name, Location loc, bool ignore_cs0104)
1087                 {
1088                         if (Cache.Contains (name))
1089                                 return (FullNamedExpression) Cache [name];
1090
1091                         FullNamedExpression e;
1092                         Type t = LookupNestedTypeInHierarchy (name);
1093                         if (t != null)
1094                                 e = new TypeExpression (t, Location.Null);
1095                         else if (Parent != null)
1096                                 e = Parent.LookupNamespaceOrType (name, loc, ignore_cs0104);
1097                         else
1098                                 e = NamespaceEntry.LookupNamespaceOrType (this, name, loc, ignore_cs0104);
1099
1100                         Cache [name] = e;
1101                         return e;
1102                 }
1103
1104                 /// <remarks>
1105                 ///   This function is broken and not what you're looking for.  It should only
1106                 ///   be used while the type is still being created since it doesn't use the cache
1107                 ///   and relies on the filter doing the member name check.
1108                 /// </remarks>
1109                 public abstract MemberList FindMembers (MemberTypes mt, BindingFlags bf,
1110                                                         MemberFilter filter, object criteria);
1111
1112                 /// <remarks>
1113                 ///   If we have a MemberCache, return it.  This property may return null if the
1114                 ///   class doesn't have a member cache or while it's still being created.
1115                 /// </remarks>
1116                 public abstract MemberCache MemberCache {
1117                         get;
1118                 }
1119
1120                 public override void ApplyAttributeBuilder (Attribute a, CustomAttributeBuilder cb)
1121                 {
1122                         if (a.Type == TypeManager.required_attr_type) {
1123                                 Report.Error (1608, a.Location, "The RequiredAttribute attribute is not permitted on C# types");
1124                                 return;
1125                         }
1126                         TypeBuilder.SetCustomAttribute (cb);
1127                 }
1128
1129                 //
1130                 // Extensions for generics
1131                 //
1132                 TypeParameter[] type_params;
1133                 TypeParameter[] type_param_list;
1134
1135                 protected string GetInstantiationName ()
1136                 {
1137                         StringBuilder sb = new StringBuilder (Name);
1138                         sb.Append ("<");
1139                         for (int i = 0; i < type_param_list.Length; i++) {
1140                                 if (i > 0)
1141                                         sb.Append (",");
1142                                 sb.Append (type_param_list [i].Name);
1143                         }
1144                         sb.Append (">");
1145                         return sb.ToString ();
1146                 }
1147
1148                 bool check_type_parameter (ArrayList list, int start, string name)
1149                 {
1150                         for (int i = 0; i < start; i++) {
1151                                 TypeParameter param = (TypeParameter) list [i];
1152
1153                                 if (param.Name != name)
1154                                         continue;
1155
1156                                 Report.SymbolRelatedToPreviousError (Parent);
1157                                 // TODO: Location is wrong (parent instead of child)
1158                                 Report.Warning (693, 3, Location,
1159                                         "Type parameter `{0}' has the same name as the type parameter from outer type `{1}'",
1160                                         name, Parent.GetSignatureForError ());
1161
1162                                 return false;
1163                         }
1164
1165                         return true;
1166                 }
1167
1168                 TypeParameter[] initialize_type_params ()
1169                 {
1170                         if (type_param_list != null)
1171                                 return type_param_list;
1172
1173                         DeclSpace the_parent = Parent;
1174                         if (this is GenericMethod)
1175                                 the_parent = null;
1176
1177                         int start = 0;
1178                         ArrayList list = new ArrayList ();
1179                         if (the_parent != null && the_parent.IsGeneric) {
1180                                 // FIXME: move generics info out of DeclSpace
1181                                 TypeParameter[] parent_params = the_parent.PartialContainer.TypeParameters;
1182                                 start = parent_params.Length;
1183                                 list.AddRange (parent_params);
1184                         }
1185  
1186                         int count = type_params != null ? type_params.Length : 0;
1187                         for (int i = 0; i < count; i++) {
1188                                 TypeParameter param = type_params [i];
1189                                 check_type_parameter (list, start, param.Name);
1190                                 list.Add (param);
1191                         }
1192
1193                         type_param_list = new TypeParameter [list.Count];
1194                         list.CopyTo (type_param_list, 0);
1195                         return type_param_list;
1196                 }
1197
1198                 public virtual void SetParameterInfo (ArrayList constraints_list)
1199                 {
1200                         if (!is_generic) {
1201                                 if (constraints_list != null) {
1202                                         Report.Error (
1203                                                 80, Location, "Constraints are not allowed " +
1204                                                 "on non-generic declarations");
1205                                 }
1206
1207                                 return;
1208                         }
1209
1210                         TypeParameterName[] names = MemberName.TypeArguments.GetDeclarations ();
1211                         type_params = new TypeParameter [names.Length];
1212
1213                         //
1214                         // Register all the names
1215                         //
1216                         for (int i = 0; i < type_params.Length; i++) {
1217                                 TypeParameterName name = names [i];
1218
1219                                 Constraints constraints = null;
1220                                 if (constraints_list != null) {
1221                                         int total = constraints_list.Count;
1222                                         for (int ii = 0; ii < total; ++ii) {
1223                                                 Constraints constraints_at = (Constraints)constraints_list[ii];
1224                                                 // TODO: it is used by iterators only
1225                                                 if (constraints_at == null) {
1226                                                         constraints_list.RemoveAt (ii);
1227                                                         --total;
1228                                                         continue;
1229                                                 }
1230                                                 if (constraints_at.TypeParameter == name.Name) {
1231                                                         constraints = constraints_at;
1232                                                         constraints_list.RemoveAt(ii);
1233                                                         break;
1234                                                 }
1235                                         }
1236                                 }
1237
1238                                 type_params [i] = new TypeParameter (
1239                                         Parent, this, name.Name, constraints, name.OptAttributes,
1240                                         Location);
1241
1242                                 AddToContainer (type_params [i], name.Name);
1243                         }
1244
1245                         if (constraints_list != null && constraints_list.Count > 0) {
1246                                 foreach (Constraints constraint in constraints_list) {
1247                                         Report.Error(699, constraint.Location, "`{0}': A constraint references nonexistent type parameter `{1}'", 
1248                                                 GetSignatureForError (), constraint.TypeParameter);
1249                                 }
1250                         }
1251                 }
1252
1253                 public TypeParameter[] TypeParameters {
1254                         get {
1255                                 if (!IsGeneric)
1256                                         throw new InvalidOperationException ();
1257                                 if (type_param_list == null)
1258                                         initialize_type_params ();
1259
1260                                 return type_param_list;
1261                         }
1262                 }
1263
1264                 public TypeParameter[] CurrentTypeParameters {
1265                         get {
1266                                 if (!IsGeneric)
1267                                         throw new InvalidOperationException ();
1268                                 if (type_params != null)
1269                                         return type_params;
1270                                 else
1271                                         return new TypeParameter [0];
1272                         }
1273                 }
1274
1275                 public int CountTypeParameters {
1276                         get {
1277                                 return count_type_params;
1278                         }
1279                 }
1280
1281                 public int CountCurrentTypeParameters {
1282                         get {
1283                                 return count_current_type_params;
1284                         }
1285                 }
1286
1287                 public TypeParameterExpr LookupGeneric (string name, Location loc)
1288                 {
1289                         if (!IsGeneric)
1290                                 return null;
1291
1292                         TypeParameter [] current_params;
1293                         if (this is TypeContainer)
1294                                 current_params = PartialContainer.CurrentTypeParameters;
1295                         else
1296                                 current_params = CurrentTypeParameters;
1297
1298                         foreach (TypeParameter type_param in current_params) {
1299                                 if (type_param.Name == name)
1300                                         return new TypeParameterExpr (type_param, loc);
1301                         }
1302
1303                         if (Parent != null)
1304                                 return Parent.LookupGeneric (name, loc);
1305
1306                         return null;
1307                 }
1308
1309                 // Used for error reporting only
1310                 public virtual Type LookupAnyGeneric (string typeName)
1311                 {
1312                         return NamespaceEntry.NS.LookForAnyGenericType (typeName);
1313                 }
1314
1315                 public override string[] ValidAttributeTargets {
1316                         get { return attribute_targets; }
1317                 }
1318
1319                 protected override bool VerifyClsCompliance ()
1320                 {
1321                         if (!base.VerifyClsCompliance ()) {
1322                                 return false;
1323                         }
1324
1325                         if (type_params != null) {
1326                                 foreach (TypeParameter tp in type_params) {
1327                                         if (tp.Constraints == null)
1328                                                 continue;
1329
1330                                         tp.Constraints.VerifyClsCompliance ();
1331                                 }
1332                         }
1333
1334                         IDictionary cache = TypeManager.AllClsTopLevelTypes;
1335                         if (cache == null)
1336                                 return true;
1337
1338                         string lcase = Name.ToLower (System.Globalization.CultureInfo.InvariantCulture);
1339                         if (!cache.Contains (lcase)) {
1340                                 cache.Add (lcase, this);
1341                                 return true;
1342                         }
1343
1344                         object val = cache [lcase];
1345                         if (val == null) {
1346                                 Type t = AttributeTester.GetImportedIgnoreCaseClsType (lcase);
1347                                 if (t == null)
1348                                         return true;
1349                                 Report.SymbolRelatedToPreviousError (t);
1350                         }
1351                         else {
1352                                 Report.SymbolRelatedToPreviousError ((DeclSpace)val);
1353                         }
1354 #if GMCS_SOURCE
1355                         Report.Warning (3005, 1, Location, "Identifier `{0}' differing only in case is not CLS-compliant", GetSignatureForError ());
1356 #else
1357                         Report.Error (3005, Location, "Identifier `{0}' differing only in case is not CLS-compliant", GetSignatureForError ());
1358 #endif
1359                         return true;
1360                 }
1361         }
1362
1363         /// <summary>
1364         ///   This is a readonly list of MemberInfo's.      
1365         /// </summary>
1366         public class MemberList : IList {
1367                 public readonly IList List;
1368                 int count;
1369
1370                 /// <summary>
1371                 ///   Create a new MemberList from the given IList.
1372                 /// </summary>
1373                 public MemberList (IList list)
1374                 {
1375                         if (list != null)
1376                                 this.List = list;
1377                         else
1378                                 this.List = new ArrayList ();
1379                         count = List.Count;
1380                 }
1381
1382                 /// <summary>
1383                 ///   Concatenate the ILists `first' and `second' to a new MemberList.
1384                 /// </summary>
1385                 public MemberList (IList first, IList second)
1386                 {
1387                         ArrayList list = new ArrayList ();
1388                         list.AddRange (first);
1389                         list.AddRange (second);
1390                         count = list.Count;
1391                         List = list;
1392                 }
1393
1394                 public static readonly MemberList Empty = new MemberList (new ArrayList ());
1395
1396                 /// <summary>
1397                 ///   Cast the MemberList into a MemberInfo[] array.
1398                 /// </summary>
1399                 /// <remarks>
1400                 ///   This is an expensive operation, only use it if it's really necessary.
1401                 /// </remarks>
1402                 public static explicit operator MemberInfo [] (MemberList list)
1403                 {
1404                         Timer.StartTimer (TimerType.MiscTimer);
1405                         MemberInfo [] result = new MemberInfo [list.Count];
1406                         list.CopyTo (result, 0);
1407                         Timer.StopTimer (TimerType.MiscTimer);
1408                         return result;
1409                 }
1410
1411                 // ICollection
1412
1413                 public int Count {
1414                         get {
1415                                 return count;
1416                         }
1417                 }
1418
1419                 public bool IsSynchronized {
1420                         get {
1421                                 return List.IsSynchronized;
1422                         }
1423                 }
1424
1425                 public object SyncRoot {
1426                         get {
1427                                 return List.SyncRoot;
1428                         }
1429                 }
1430
1431                 public void CopyTo (Array array, int index)
1432                 {
1433                         List.CopyTo (array, index);
1434                 }
1435
1436                 // IEnumerable
1437
1438                 public IEnumerator GetEnumerator ()
1439                 {
1440                         return List.GetEnumerator ();
1441                 }
1442
1443                 // IList
1444
1445                 public bool IsFixedSize {
1446                         get {
1447                                 return true;
1448                         }
1449                 }
1450
1451                 public bool IsReadOnly {
1452                         get {
1453                                 return true;
1454                         }
1455                 }
1456
1457                 object IList.this [int index] {
1458                         get {
1459                                 return List [index];
1460                         }
1461
1462                         set {
1463                                 throw new NotSupportedException ();
1464                         }
1465                 }
1466
1467                 // FIXME: try to find out whether we can avoid the cast in this indexer.
1468                 public MemberInfo this [int index] {
1469                         get {
1470                                 return (MemberInfo) List [index];
1471                         }
1472                 }
1473
1474                 public int Add (object value)
1475                 {
1476                         throw new NotSupportedException ();
1477                 }
1478
1479                 public void Clear ()
1480                 {
1481                         throw new NotSupportedException ();
1482                 }
1483
1484                 public bool Contains (object value)
1485                 {
1486                         return List.Contains (value);
1487                 }
1488
1489                 public int IndexOf (object value)
1490                 {
1491                         return List.IndexOf (value);
1492                 }
1493
1494                 public void Insert (int index, object value)
1495                 {
1496                         throw new NotSupportedException ();
1497                 }
1498
1499                 public void Remove (object value)
1500                 {
1501                         throw new NotSupportedException ();
1502                 }
1503
1504                 public void RemoveAt (int index)
1505                 {
1506                         throw new NotSupportedException ();
1507                 }
1508         }
1509
1510         /// <summary>
1511         ///   This interface is used to get all members of a class when creating the
1512         ///   member cache.  It must be implemented by all DeclSpace derivatives which
1513         ///   want to support the member cache and by TypeHandle to get caching of
1514         ///   non-dynamic types.
1515         /// </summary>
1516         public interface IMemberContainer {
1517                 /// <summary>
1518                 ///   The name of the IMemberContainer.  This is only used for
1519                 ///   debugging purposes.
1520                 /// </summary>
1521                 string Name {
1522                         get;
1523                 }
1524
1525                 /// <summary>
1526                 ///   The type of this IMemberContainer.
1527                 /// </summary>
1528                 Type Type {
1529                         get;
1530                 }
1531
1532                 /// <summary>
1533                 ///   Returns the IMemberContainer of the base class or null if this
1534                 ///   is an interface or TypeManger.object_type.
1535                 ///   This is used when creating the member cache for a class to get all
1536                 ///   members from the base class.
1537                 /// </summary>
1538                 MemberCache BaseCache {
1539                         get;
1540                 }
1541
1542                 /// <summary>
1543                 ///   Whether this is an interface.
1544                 /// </summary>
1545                 bool IsInterface {
1546                         get;
1547                 }
1548
1549                 /// <summary>
1550                 ///   Returns all members of this class with the corresponding MemberTypes
1551                 ///   and BindingFlags.
1552                 /// </summary>
1553                 /// <remarks>
1554                 ///   When implementing this method, make sure not to return any inherited
1555                 ///   members and check the MemberTypes and BindingFlags properly.
1556                 ///   Unfortunately, System.Reflection is lame and doesn't provide a way to
1557                 ///   get the BindingFlags (static/non-static,public/non-public) in the
1558                 ///   MemberInfo class, but the cache needs this information.  That's why
1559                 ///   this method is called multiple times with different BindingFlags.
1560                 /// </remarks>
1561                 MemberList GetMembers (MemberTypes mt, BindingFlags bf);
1562
1563                 /// <summary>
1564                 ///   Return the container's member cache.
1565                 /// </summary>
1566                 MemberCache MemberCache {
1567                         get;
1568                 }
1569         }
1570
1571         /// <summary>
1572         ///   The MemberCache is used by dynamic and non-dynamic types to speed up
1573         ///   member lookups.  It has a member name based hash table; it maps each member
1574         ///   name to a list of CacheEntry objects.  Each CacheEntry contains a MemberInfo
1575         ///   and the BindingFlags that were initially used to get it.  The cache contains
1576         ///   all members of the current class and all inherited members.  If this cache is
1577         ///   for an interface types, it also contains all inherited members.
1578         ///
1579         ///   There are two ways to get a MemberCache:
1580         ///   * if this is a dynamic type, lookup the corresponding DeclSpace and then
1581         ///     use the DeclSpace.MemberCache property.
1582         ///   * if this not a dynamic type, call TypeHandle.GetTypeHandle() to get a
1583         ///     TypeHandle instance for the type and then use TypeHandle.MemberCache.
1584         /// </summary>
1585         public class MemberCache {
1586                 public readonly IMemberContainer Container;
1587                 protected Hashtable member_hash;
1588                 protected Hashtable method_hash;
1589
1590                 /// <summary>
1591                 ///   Create a new MemberCache for the given IMemberContainer `container'.
1592                 /// </summary>
1593                 public MemberCache (IMemberContainer container)
1594                 {
1595                         this.Container = container;
1596
1597                         Timer.IncrementCounter (CounterType.MemberCache);
1598                         Timer.StartTimer (TimerType.CacheInit);
1599
1600                         // If we have a base class (we have a base class unless we're
1601                         // TypeManager.object_type), we deep-copy its MemberCache here.
1602                         if (Container.BaseCache != null)
1603                                 member_hash = SetupCache (Container.BaseCache);
1604                         else
1605                                 member_hash = new Hashtable ();
1606
1607                         // If this is neither a dynamic type nor an interface, create a special
1608                         // method cache with all declared and inherited methods.
1609                         Type type = container.Type;
1610                         if (!(type is TypeBuilder) && !type.IsInterface &&
1611                             // !(type.IsGenericType && (type.GetGenericTypeDefinition () is TypeBuilder)) &&
1612                             !TypeManager.IsGenericType (type) && !TypeManager.IsGenericParameter (type) &&
1613                             (Container.BaseCache == null || Container.BaseCache.method_hash != null)) {
1614                                 method_hash = new Hashtable ();
1615                                 AddMethods (type);
1616                         }
1617
1618                         // Add all members from the current class.
1619                         AddMembers (Container);
1620
1621                         Timer.StopTimer (TimerType.CacheInit);
1622                 }
1623
1624                 public MemberCache (Type[] ifaces)
1625                 {
1626                         //
1627                         // The members of this cache all belong to other caches.  
1628                         // So, 'Container' will not be used.
1629                         //
1630                         this.Container = null;
1631
1632                         member_hash = new Hashtable ();
1633                         if (ifaces == null)
1634                                 return;
1635
1636                         foreach (Type itype in ifaces)
1637                                 AddCacheContents (TypeManager.LookupMemberCache (itype));
1638                 }
1639
1640                 public MemberCache (IMemberContainer container, Type base_class, Type[] ifaces)
1641                 {
1642                         this.Container = container;
1643
1644                         // If we have a base class (we have a base class unless we're
1645                         // TypeManager.object_type), we deep-copy its MemberCache here.
1646                         if (Container.BaseCache != null)
1647                                 member_hash = SetupCache (Container.BaseCache);
1648                         else
1649                                 member_hash = new Hashtable ();
1650
1651                         if (base_class != null)
1652                                 AddCacheContents (TypeManager.LookupMemberCache (base_class));
1653                         if (ifaces != null) {
1654                                 foreach (Type itype in ifaces) {
1655                                         MemberCache cache = TypeManager.LookupMemberCache (itype);
1656                                         if (cache != null)
1657                                                 AddCacheContents (cache);
1658                                 }
1659                         }
1660                 }
1661
1662                 /// <summary>
1663                 ///   Bootstrap this member cache by doing a deep-copy of our base.
1664                 /// </summary>
1665                 static Hashtable SetupCache (MemberCache base_class)
1666                 {
1667                         Hashtable hash = new Hashtable ();
1668
1669                         if (base_class == null)
1670                                 return hash;
1671
1672                         IDictionaryEnumerator it = base_class.member_hash.GetEnumerator ();
1673                         while (it.MoveNext ()) {
1674                                 hash [it.Key] = ((ArrayList) it.Value).Clone ();
1675                          }
1676                                 
1677                         return hash;
1678                 }
1679
1680                 /// <summary>
1681                 ///   Add the contents of `cache' to the member_hash.
1682                 /// </summary>
1683                 void AddCacheContents (MemberCache cache)
1684                 {
1685                         IDictionaryEnumerator it = cache.member_hash.GetEnumerator ();
1686                         while (it.MoveNext ()) {
1687                                 ArrayList list = (ArrayList) member_hash [it.Key];
1688                                 if (list == null)
1689                                         member_hash [it.Key] = list = new ArrayList ();
1690
1691                                 ArrayList entries = (ArrayList) it.Value;
1692                                 for (int i = entries.Count-1; i >= 0; i--) {
1693                                         CacheEntry entry = (CacheEntry) entries [i];
1694
1695                                         if (entry.Container != cache.Container)
1696                                                 break;
1697                                         list.Add (entry);
1698                                 }
1699                         }
1700                 }
1701
1702                 /// <summary>
1703                 ///   Add all members from class `container' to the cache.
1704                 /// </summary>
1705                 void AddMembers (IMemberContainer container)
1706                 {
1707                         // We need to call AddMembers() with a single member type at a time
1708                         // to get the member type part of CacheEntry.EntryType right.
1709                         if (!container.IsInterface) {
1710                                 AddMembers (MemberTypes.Constructor, container);
1711                                 AddMembers (MemberTypes.Field, container);
1712                         }
1713                         AddMembers (MemberTypes.Method, container);
1714                         AddMembers (MemberTypes.Property, container);
1715                         AddMembers (MemberTypes.Event, container);
1716                         // Nested types are returned by both Static and Instance searches.
1717                         AddMembers (MemberTypes.NestedType,
1718                                     BindingFlags.Static | BindingFlags.Public, container);
1719                         AddMembers (MemberTypes.NestedType,
1720                                     BindingFlags.Static | BindingFlags.NonPublic, container);
1721                 }
1722
1723                 void AddMembers (MemberTypes mt, IMemberContainer container)
1724                 {
1725                         AddMembers (mt, BindingFlags.Static | BindingFlags.Public, container);
1726                         AddMembers (mt, BindingFlags.Static | BindingFlags.NonPublic, container);
1727                         AddMembers (mt, BindingFlags.Instance | BindingFlags.Public, container);
1728                         AddMembers (mt, BindingFlags.Instance | BindingFlags.NonPublic, container);
1729                 }
1730
1731                 /// <summary>
1732                 ///   Add all members from class `container' with the requested MemberTypes and
1733                 ///   BindingFlags to the cache.  This method is called multiple times with different
1734                 ///   MemberTypes and BindingFlags.
1735                 /// </summary>
1736                 void AddMembers (MemberTypes mt, BindingFlags bf, IMemberContainer container)
1737                 {
1738                         MemberList members = container.GetMembers (mt, bf);
1739
1740                         foreach (MemberInfo member in members) {
1741                                 string name = member.Name;
1742
1743                                 int pos = name.IndexOf ('<');
1744                                 if (pos > 0)
1745                                         name = name.Substring (0, pos);
1746
1747                                 // We use a name-based hash table of ArrayList's.
1748                                 ArrayList list = (ArrayList) member_hash [name];
1749                                 if (list == null) {
1750                                         list = new ArrayList ();
1751                                         member_hash.Add (name, list);
1752                                 }
1753
1754                                 // When this method is called for the current class, the list will
1755                                 // already contain all inherited members from our base classes.
1756                                 // We cannot add new members in front of the list since this'd be an
1757                                 // expensive operation, that's why the list is sorted in reverse order
1758                                 // (ie. members from the current class are coming last).
1759                                 list.Add (new CacheEntry (container, member, mt, bf));
1760                         }
1761                 }
1762
1763                 /// <summary>
1764                 ///   Add all declared and inherited methods from class `type' to the method cache.
1765                 /// </summary>
1766                 void AddMethods (Type type)
1767                 {
1768                         AddMethods (BindingFlags.Static | BindingFlags.Public |
1769                                     BindingFlags.FlattenHierarchy, type);
1770                         AddMethods (BindingFlags.Static | BindingFlags.NonPublic |
1771                                     BindingFlags.FlattenHierarchy, type);
1772                         AddMethods (BindingFlags.Instance | BindingFlags.Public, type);
1773                         AddMethods (BindingFlags.Instance | BindingFlags.NonPublic, type);
1774                 }
1775
1776                 static ArrayList overrides = new ArrayList ();
1777
1778                 void AddMethods (BindingFlags bf, Type type)
1779                 {
1780                         MethodBase [] members = type.GetMethods (bf);
1781
1782                         Array.Reverse (members);
1783
1784                         foreach (MethodBase member in members) {
1785                                 string name = member.Name;
1786
1787                                 // We use a name-based hash table of ArrayList's.
1788                                 ArrayList list = (ArrayList) method_hash [name];
1789                                 if (list == null) {
1790                                         list = new ArrayList ();
1791                                         method_hash.Add (name, list);
1792                                 }
1793
1794                                 MethodInfo curr = (MethodInfo) member;
1795                                 while (curr.IsVirtual && (curr.Attributes & MethodAttributes.NewSlot) == 0) {
1796                                         MethodInfo base_method = curr.GetBaseDefinition ();
1797
1798                                         if (base_method == curr)
1799                                                 // Not every virtual function needs to have a NewSlot flag.
1800                                                 break;
1801
1802                                         overrides.Add (curr);
1803                                         list.Add (new CacheEntry (null, base_method, MemberTypes.Method, bf));
1804                                         curr = base_method;
1805                                 }
1806
1807                                 if (overrides.Count > 0) {
1808                                         for (int i = 0; i < overrides.Count; ++i)
1809                                                 TypeManager.RegisterOverride ((MethodBase) overrides [i], curr);
1810                                         overrides.Clear ();
1811                                 }
1812
1813                                 // Unfortunately, the elements returned by Type.GetMethods() aren't
1814                                 // sorted so we need to do this check for every member.
1815                                 BindingFlags new_bf = bf;
1816                                 if (member.DeclaringType == type)
1817                                         new_bf |= BindingFlags.DeclaredOnly;
1818
1819                                 list.Add (new CacheEntry (Container, member, MemberTypes.Method, new_bf));
1820                         }
1821                 }
1822
1823                 /// <summary>
1824                 ///   Compute and return a appropriate `EntryType' magic number for the given
1825                 ///   MemberTypes and BindingFlags.
1826                 /// </summary>
1827                 protected static EntryType GetEntryType (MemberTypes mt, BindingFlags bf)
1828                 {
1829                         EntryType type = EntryType.None;
1830
1831                         if ((mt & MemberTypes.Constructor) != 0)
1832                                 type |= EntryType.Constructor;
1833                         if ((mt & MemberTypes.Event) != 0)
1834                                 type |= EntryType.Event;
1835                         if ((mt & MemberTypes.Field) != 0)
1836                                 type |= EntryType.Field;
1837                         if ((mt & MemberTypes.Method) != 0)
1838                                 type |= EntryType.Method;
1839                         if ((mt & MemberTypes.Property) != 0)
1840                                 type |= EntryType.Property;
1841                         // Nested types are returned by static and instance searches.
1842                         if ((mt & MemberTypes.NestedType) != 0)
1843                                 type |= EntryType.NestedType | EntryType.Static | EntryType.Instance;
1844
1845                         if ((bf & BindingFlags.Instance) != 0)
1846                                 type |= EntryType.Instance;
1847                         if ((bf & BindingFlags.Static) != 0)
1848                                 type |= EntryType.Static;
1849                         if ((bf & BindingFlags.Public) != 0)
1850                                 type |= EntryType.Public;
1851                         if ((bf & BindingFlags.NonPublic) != 0)
1852                                 type |= EntryType.NonPublic;
1853                         if ((bf & BindingFlags.DeclaredOnly) != 0)
1854                                 type |= EntryType.Declared;
1855
1856                         return type;
1857                 }
1858
1859                 /// <summary>
1860                 ///   The `MemberTypes' enumeration type is a [Flags] type which means that it may
1861                 ///   denote multiple member types.  Returns true if the given flags value denotes a
1862                 ///   single member types.
1863                 /// </summary>
1864                 public static bool IsSingleMemberType (MemberTypes mt)
1865                 {
1866                         switch (mt) {
1867                         case MemberTypes.Constructor:
1868                         case MemberTypes.Event:
1869                         case MemberTypes.Field:
1870                         case MemberTypes.Method:
1871                         case MemberTypes.Property:
1872                         case MemberTypes.NestedType:
1873                                 return true;
1874
1875                         default:
1876                                 return false;
1877                         }
1878                 }
1879
1880                 /// <summary>
1881                 ///   We encode the MemberTypes and BindingFlags of each members in a "magic"
1882                 ///   number to speed up the searching process.
1883                 /// </summary>
1884                 [Flags]
1885                 protected enum EntryType {
1886                         None            = 0x000,
1887
1888                         Instance        = 0x001,
1889                         Static          = 0x002,
1890                         MaskStatic      = Instance|Static,
1891
1892                         Public          = 0x004,
1893                         NonPublic       = 0x008,
1894                         MaskProtection  = Public|NonPublic,
1895
1896                         Declared        = 0x010,
1897
1898                         Constructor     = 0x020,
1899                         Event           = 0x040,
1900                         Field           = 0x080,
1901                         Method          = 0x100,
1902                         Property        = 0x200,
1903                         NestedType      = 0x400,
1904
1905                         NotExtensionMethod      = 0x800,
1906
1907                         MaskType        = Constructor|Event|Field|Method|Property|NestedType
1908                 }
1909
1910                 protected class CacheEntry {
1911                         public readonly IMemberContainer Container;
1912                         public EntryType EntryType;
1913                         public readonly MemberInfo Member;
1914
1915                         public CacheEntry (IMemberContainer container, MemberInfo member,
1916                                            MemberTypes mt, BindingFlags bf)
1917                         {
1918                                 this.Container = container;
1919                                 this.Member = member;
1920                                 this.EntryType = GetEntryType (mt, bf);
1921                         }
1922
1923                         public override string ToString ()
1924                         {
1925                                 return String.Format ("CacheEntry ({0}:{1}:{2})", Container.Name,
1926                                                       EntryType, Member);
1927                         }
1928                 }
1929
1930                 /// <summary>
1931                 ///   This is called each time we're walking up one level in the class hierarchy
1932                 ///   and checks whether we can abort the search since we've already found what
1933                 ///   we were looking for.
1934                 /// </summary>
1935                 protected bool DoneSearching (ArrayList list)
1936                 {
1937                         //
1938                         // We've found exactly one member in the current class and it's not
1939                         // a method or constructor.
1940                         //
1941                         if (list.Count == 1 && !(list [0] is MethodBase))
1942                                 return true;
1943
1944                         //
1945                         // Multiple properties: we query those just to find out the indexer
1946                         // name
1947                         //
1948                         if ((list.Count > 0) && (list [0] is PropertyInfo))
1949                                 return true;
1950
1951                         return false;
1952                 }
1953
1954                 /// <summary>
1955                 ///   Looks up members with name `name'.  If you provide an optional
1956                 ///   filter function, it'll only be called with members matching the
1957                 ///   requested member name.
1958                 ///
1959                 ///   This method will try to use the cache to do the lookup if possible.
1960                 ///
1961                 ///   Unlike other FindMembers implementations, this method will always
1962                 ///   check all inherited members - even when called on an interface type.
1963                 ///
1964                 ///   If you know that you're only looking for methods, you should use
1965                 ///   MemberTypes.Method alone since this speeds up the lookup a bit.
1966                 ///   When doing a method-only search, it'll try to use a special method
1967                 ///   cache (unless it's a dynamic type or an interface) and the returned
1968                 ///   MemberInfo's will have the correct ReflectedType for inherited methods.
1969                 ///   The lookup process will automatically restart itself in method-only
1970                 ///   search mode if it discovers that it's about to return methods.
1971                 /// </summary>
1972                 ArrayList global = new ArrayList ();
1973                 bool using_global = false;
1974                 
1975                 static MemberInfo [] emptyMemberInfo = new MemberInfo [0];
1976                 
1977                 public MemberInfo [] FindMembers (MemberTypes mt, BindingFlags bf, string name,
1978                                                   MemberFilter filter, object criteria)
1979                 {
1980                         if (using_global)
1981                                 throw new Exception ();
1982                         
1983                         bool declared_only = (bf & BindingFlags.DeclaredOnly) != 0;
1984                         bool method_search = mt == MemberTypes.Method;
1985                         // If we have a method cache and we aren't already doing a method-only search,
1986                         // then we restart a method search if the first match is a method.
1987                         bool do_method_search = !method_search && (method_hash != null);
1988
1989                         ArrayList applicable;
1990
1991                         // If this is a method-only search, we try to use the method cache if
1992                         // possible; a lookup in the method cache will return a MemberInfo with
1993                         // the correct ReflectedType for inherited methods.
1994                         
1995                         if (method_search && (method_hash != null))
1996                                 applicable = (ArrayList) method_hash [name];
1997                         else
1998                                 applicable = (ArrayList) member_hash [name];
1999
2000                         if (applicable == null)
2001                                 return emptyMemberInfo;
2002
2003                         //
2004                         // 32  slots gives 53 rss/54 size
2005                         // 2/4 slots gives 55 rss
2006                         //
2007                         // Strange: from 25,000 calls, only 1,800
2008                         // are above 2.  Why does this impact it?
2009                         //
2010                         global.Clear ();
2011                         using_global = true;
2012
2013                         Timer.StartTimer (TimerType.CachedLookup);
2014
2015                         EntryType type = GetEntryType (mt, bf);
2016
2017                         IMemberContainer current = Container;
2018
2019                         bool do_interface_search = current.IsInterface;
2020
2021                         // `applicable' is a list of all members with the given member name `name'
2022                         // in the current class and all its base classes.  The list is sorted in
2023                         // reverse order due to the way how the cache is initialy created (to speed
2024                         // things up, we're doing a deep-copy of our base).
2025
2026                         for (int i = applicable.Count-1; i >= 0; i--) {
2027                                 CacheEntry entry = (CacheEntry) applicable [i];
2028
2029                                 // This happens each time we're walking one level up in the class
2030                                 // hierarchy.  If we're doing a DeclaredOnly search, we must abort
2031                                 // the first time this happens (this may already happen in the first
2032                                 // iteration of this loop if there are no members with the name we're
2033                                 // looking for in the current class).
2034                                 if (entry.Container != current) {
2035                                         if (declared_only)
2036                                                 break;
2037
2038                                         if (!do_interface_search && DoneSearching (global))
2039                                                 break;
2040
2041                                         current = entry.Container;
2042                                 }
2043
2044                                 // Is the member of the correct type ?
2045                                 if ((entry.EntryType & type & EntryType.MaskType) == 0)
2046                                         continue;
2047
2048                                 // Is the member static/non-static ?
2049                                 if ((entry.EntryType & type & EntryType.MaskStatic) == 0)
2050                                         continue;
2051
2052                                 // Apply the filter to it.
2053                                 if (filter (entry.Member, criteria)) {
2054                                         if ((entry.EntryType & EntryType.MaskType) != EntryType.Method) {
2055                                                 do_method_search = false;
2056                                         }
2057                                         
2058                                         // Because interfaces support multiple inheritance we have to be sure that
2059                                         // base member is from same interface, so only top level member will be returned
2060                                         if (do_interface_search && global.Count > 0) {
2061                                                 bool member_already_exists = false;
2062
2063                                                 foreach (MemberInfo mi in global) {
2064                                                         if (mi is MethodBase)
2065                                                                 continue;
2066
2067                                                         if (IsInterfaceBaseInterface (TypeManager.GetInterfaces (mi.DeclaringType), entry.Member.DeclaringType)) {
2068                                                                 member_already_exists = true;
2069                                                                 break;
2070                                                         }
2071                                                 }
2072                                                 if (member_already_exists)
2073                                                         continue;
2074                                         }
2075
2076                                         global.Add (entry.Member);
2077                                 }
2078                         }
2079
2080                         Timer.StopTimer (TimerType.CachedLookup);
2081
2082                         // If we have a method cache and we aren't already doing a method-only
2083                         // search, we restart in method-only search mode if the first match is
2084                         // a method.  This ensures that we return a MemberInfo with the correct
2085                         // ReflectedType for inherited methods.
2086                         if (do_method_search && (global.Count > 0)){
2087                                 using_global = false;
2088
2089                                 return FindMembers (MemberTypes.Method, bf, name, filter, criteria);
2090                         }
2091
2092                         using_global = false;
2093                         MemberInfo [] copy = new MemberInfo [global.Count];
2094                         global.CopyTo (copy);
2095                         return copy;
2096                 }
2097
2098                 /// <summary>
2099                 /// Returns true if iterface exists in any base interfaces (ifaces)
2100                 /// </summary>
2101                 static bool IsInterfaceBaseInterface (Type[] ifaces, Type ifaceToFind)
2102                 {
2103                         foreach (Type iface in ifaces) {
2104                                 if (iface == ifaceToFind)
2105                                         return true;
2106
2107                                 Type[] base_ifaces = TypeManager.GetInterfaces (iface);
2108                                 if (base_ifaces.Length > 0 && IsInterfaceBaseInterface (base_ifaces, ifaceToFind))
2109                                         return true;
2110                         }
2111                         return false;
2112                 }
2113                 
2114                 // find the nested type @name in @this.
2115                 public Type FindNestedType (string name)
2116                 {
2117                         ArrayList applicable = (ArrayList) member_hash [name];
2118                         if (applicable == null)
2119                                 return null;
2120                         
2121                         for (int i = applicable.Count-1; i >= 0; i--) {
2122                                 CacheEntry entry = (CacheEntry) applicable [i];
2123                                 if ((entry.EntryType & EntryType.NestedType & EntryType.MaskType) != 0)
2124                                         return (Type) entry.Member;
2125                         }
2126                         
2127                         return null;
2128                 }
2129
2130                 public MemberInfo FindBaseEvent (Type invocationType, string name)
2131                 {
2132                         ArrayList applicable = (ArrayList) member_hash [name];
2133                         if (applicable == null)
2134                                 return null;
2135
2136                         //
2137                         // Walk the chain of events, starting from the top.
2138                         //
2139                         for (int i = applicable.Count - 1; i >= 0; i--) 
2140                         {
2141                                 CacheEntry entry = (CacheEntry) applicable [i];
2142                                 if ((entry.EntryType & EntryType.Event) == 0)
2143                                         continue;
2144                                 
2145                                 EventInfo ei = (EventInfo)entry.Member;
2146                                 return ei.GetAddMethod (true);
2147                         }
2148
2149                         return null;
2150                 }
2151
2152                 //
2153                 // Looks for extension methods with defined name and extension type
2154                 //
2155                 public ArrayList FindExtensionMethods (Type extensionType, string name)
2156                 {
2157                         ArrayList entries;
2158                         if (method_hash != null)
2159                                 entries = (ArrayList)method_hash [name];
2160                         else
2161                                 entries = (ArrayList)member_hash [name];
2162
2163                         if (entries == null)
2164                                 return null;
2165
2166                         ArrayList candidates = null;
2167                         foreach (CacheEntry entry in entries) {
2168                                 if ((entry.EntryType & (EntryType.Static | EntryType.Method | EntryType.NotExtensionMethod)) == (EntryType.Static | EntryType.Method)) {
2169                                         MethodBase mb = (MethodBase)entry.Member;
2170
2171                                         IMethodData md = TypeManager.GetMethod (mb);
2172                                         ParameterData pd = md == null ?
2173                                                 TypeManager.GetParameterData (mb) : md.ParameterInfo;
2174
2175                                         Type ex_type = pd.ExtensionMethodType;
2176                                         if (ex_type == null) {
2177                                                 entry.EntryType |= EntryType.NotExtensionMethod;
2178                                                 continue;
2179                                         }
2180
2181                                         if (ex_type == extensionType || TypeManager.IsGenericParameter (ex_type)) {
2182                                                 if (candidates == null)
2183                                                         candidates = new ArrayList (2);
2184                                                 candidates.Add (mb);
2185                                         }
2186                                 }
2187                         }
2188
2189                         return candidates;
2190                 }
2191                 
2192                 //
2193                 // This finds the method or property for us to override. invocationType is the type where
2194                 // the override is going to be declared, name is the name of the method/property, and
2195                 // paramTypes is the parameters, if any to the method or property
2196                 //
2197                 // Because the MemberCache holds members from this class and all the base classes,
2198                 // we can avoid tons of reflection stuff.
2199                 //
2200                 public MemberInfo FindMemberToOverride (Type invocationType, string name, Type [] paramTypes, GenericMethod genericMethod, bool is_property)
2201                 {
2202                         ArrayList applicable;
2203                         if (method_hash != null && !is_property)
2204                                 applicable = (ArrayList) method_hash [name];
2205                         else
2206                                 applicable = (ArrayList) member_hash [name];
2207                         
2208                         if (applicable == null)
2209                                 return null;
2210                         //
2211                         // Walk the chain of methods, starting from the top.
2212                         //
2213                         for (int i = applicable.Count - 1; i >= 0; i--) {
2214                                 CacheEntry entry = (CacheEntry) applicable [i];
2215                                 
2216                                 if ((entry.EntryType & (is_property ? (EntryType.Property | EntryType.Field) : EntryType.Method)) == 0)
2217                                         continue;
2218
2219                                 PropertyInfo pi = null;
2220                                 MethodInfo mi = null;
2221                                 FieldInfo fi = null;
2222                                 Type [] cmpAttrs = null;
2223                                 
2224                                 if (is_property) {
2225                                         if ((entry.EntryType & EntryType.Field) != 0) {
2226                                                 fi = (FieldInfo)entry.Member;
2227
2228                                                 // TODO: For this case we ignore member type
2229                                                 //fb = TypeManager.GetField (fi);
2230                                                 //cmpAttrs = new Type[] { fb.MemberType };
2231                                         } else {
2232                                                 pi = (PropertyInfo) entry.Member;
2233                                                 cmpAttrs = TypeManager.GetArgumentTypes (pi);
2234                                         }
2235                                 } else {
2236                                         mi = (MethodInfo) entry.Member;
2237                                         cmpAttrs = TypeManager.GetParameterData (mi).Types;
2238                                 }
2239
2240                                 if (fi != null) {
2241                                         // TODO: Almost duplicate !
2242                                         // Check visibility
2243                                         switch (fi.Attributes & FieldAttributes.FieldAccessMask) {
2244                                         case FieldAttributes.PrivateScope:
2245                                                 continue;
2246                                         case FieldAttributes.Private:
2247                                                 //
2248                                                 // A private method is Ok if we are a nested subtype.
2249                                                 // The spec actually is not very clear about this, see bug 52458.
2250                                                 //
2251                                                 if (!invocationType.Equals (entry.Container.Type) &&
2252                                                     !TypeManager.IsNestedChildOf (invocationType, entry.Container.Type))
2253                                                         continue;
2254                                                 break;
2255                                         case FieldAttributes.FamANDAssem:
2256                                         case FieldAttributes.Assembly:
2257                                                 //
2258                                                 // Check for assembly methods
2259                                                 //
2260                                                 if (mi.DeclaringType.Assembly != CodeGen.Assembly.Builder)
2261                                                         continue;
2262                                                 break;
2263                                         }
2264                                         return entry.Member;
2265                                 }
2266
2267                                 //
2268                                 // Check the arguments
2269                                 //
2270                                 if (cmpAttrs.Length != paramTypes.Length)
2271                                         continue;
2272         
2273                                 int j;
2274                                 for (j = 0; j < cmpAttrs.Length; ++j)
2275                                         if (!TypeManager.IsEqual (paramTypes [j], cmpAttrs [j]))
2276                                                 break;
2277                                 if (j < cmpAttrs.Length)
2278                                         continue;
2279
2280                                 //
2281                                 // check generic arguments for methods
2282                                 //
2283                                 if (mi != null) {
2284                                         Type [] cmpGenArgs = TypeManager.GetGenericArguments (mi);
2285                                         if (genericMethod == null && cmpGenArgs.Length != 0)
2286                                                 continue;
2287                                         if (genericMethod != null && cmpGenArgs.Length != genericMethod.TypeParameters.Length)
2288                                                 continue;
2289                                 }
2290
2291                                 //
2292                                 // get one of the methods because this has the visibility info.
2293                                 //
2294                                 if (is_property) {
2295                                         mi = pi.GetGetMethod (true);
2296                                         if (mi == null)
2297                                                 mi = pi.GetSetMethod (true);
2298                                 }
2299                                 
2300                                 //
2301                                 // Check visibility
2302                                 //
2303                                 switch (mi.Attributes & MethodAttributes.MemberAccessMask) {
2304                                 case MethodAttributes.PrivateScope:
2305                                         continue;
2306                                 case MethodAttributes.Private:
2307                                         //
2308                                         // A private method is Ok if we are a nested subtype.
2309                                         // The spec actually is not very clear about this, see bug 52458.
2310                                         //
2311                                         if (!invocationType.Equals (entry.Container.Type) &&
2312                                             !TypeManager.IsNestedChildOf (invocationType, entry.Container.Type))
2313                                                 continue;
2314                                         break;
2315                                 case MethodAttributes.FamANDAssem:
2316                                 case MethodAttributes.Assembly:
2317                                         //
2318                                         // Check for assembly methods
2319                                         //
2320                                         if (mi.DeclaringType.Assembly != CodeGen.Assembly.Builder)
2321                                                 continue;
2322                                         break;
2323                                 }
2324                                 return entry.Member;
2325                         }
2326                         
2327                         return null;
2328                 }
2329
2330                 /// <summary>
2331                 /// The method is looking for conflict with inherited symbols (errors CS0108, CS0109).
2332                 /// We handle two cases. The first is for types without parameters (events, field, properties).
2333                 /// The second are methods, indexers and this is why ignore_complex_types is here.
2334                 /// The latest param is temporary hack. See DoDefineMembers method for more info.
2335                 /// </summary>
2336                 public MemberInfo FindMemberWithSameName (string name, bool ignore_complex_types, MemberInfo ignore_member)
2337                 {
2338                         ArrayList applicable = null;
2339  
2340                         if (method_hash != null)
2341                                 applicable = (ArrayList) method_hash [name];
2342  
2343                         if (applicable != null) {
2344                                 for (int i = applicable.Count - 1; i >= 0; i--) {
2345                                         CacheEntry entry = (CacheEntry) applicable [i];
2346                                         if ((entry.EntryType & EntryType.Public) != 0)
2347                                                 return entry.Member;
2348                                 }
2349                         }
2350  
2351                         if (member_hash == null)
2352                                 return null;
2353                         applicable = (ArrayList) member_hash [name];
2354                         
2355                         if (applicable != null) {
2356                                 for (int i = applicable.Count - 1; i >= 0; i--) {
2357                                         CacheEntry entry = (CacheEntry) applicable [i];
2358                                         if ((entry.EntryType & EntryType.Public) != 0 & entry.Member != ignore_member) {
2359                                                 if (ignore_complex_types) {
2360                                                         if ((entry.EntryType & EntryType.Method) != 0)
2361                                                                 continue;
2362  
2363                                                         // Does exist easier way how to detect indexer ?
2364                                                         if ((entry.EntryType & EntryType.Property) != 0) {
2365                                                                 Type[] arg_types = TypeManager.GetArgumentTypes ((PropertyInfo)entry.Member);
2366                                                                 if (arg_types.Length > 0)
2367                                                                         continue;
2368                                                         }
2369                                                 }
2370                                                 return entry.Member;
2371                                         }
2372                                 }
2373                         }
2374                         return null;
2375                 }
2376
2377                 Hashtable locase_table;
2378  
2379                 /// <summary>
2380                 /// Builds low-case table for CLS Compliance test
2381                 /// </summary>
2382                 public Hashtable GetPublicMembers ()
2383                 {
2384                         if (locase_table != null)
2385                                 return locase_table;
2386  
2387                         locase_table = new Hashtable ();
2388                         foreach (DictionaryEntry entry in member_hash) {
2389                                 ArrayList members = (ArrayList)entry.Value;
2390                                 for (int ii = 0; ii < members.Count; ++ii) {
2391                                         CacheEntry member_entry = (CacheEntry) members [ii];
2392  
2393                                         if ((member_entry.EntryType & EntryType.Public) == 0)
2394                                                 continue;
2395  
2396                                         // TODO: Does anyone know easier way how to detect that member is internal ?
2397                                         switch (member_entry.EntryType & EntryType.MaskType) {
2398                                                 case EntryType.Constructor:
2399                                                         continue;
2400  
2401                                                 case EntryType.Field:
2402                                                         if ((((FieldInfo)member_entry.Member).Attributes & (FieldAttributes.Assembly | FieldAttributes.Public)) == FieldAttributes.Assembly)
2403                                                                 continue;
2404                                                         break;
2405  
2406                                                 case EntryType.Method:
2407                                                         if ((((MethodInfo)member_entry.Member).Attributes & (MethodAttributes.Assembly | MethodAttributes.Public)) == MethodAttributes.Assembly)
2408                                                                 continue;
2409                                                         break;
2410  
2411                                                 case EntryType.Property:
2412                                                         PropertyInfo pi = (PropertyInfo)member_entry.Member;
2413                                                         if (pi.GetSetMethod () == null && pi.GetGetMethod () == null)
2414                                                                 continue;
2415                                                         break;
2416  
2417                                                 case EntryType.Event:
2418                                                         EventInfo ei = (EventInfo)member_entry.Member;
2419                                                         MethodInfo mi = ei.GetAddMethod ();
2420                                                         if ((mi.Attributes & (MethodAttributes.Assembly | MethodAttributes.Public)) == MethodAttributes.Assembly)
2421                                                                 continue;
2422                                                         break;
2423                                         }
2424                                         string lcase = ((string)entry.Key).ToLower (System.Globalization.CultureInfo.InvariantCulture);
2425                                         locase_table [lcase] = member_entry.Member;
2426                                         break;
2427                                 }
2428                         }
2429                         return locase_table;
2430                 }
2431  
2432                 public Hashtable Members {
2433                         get {
2434                                 return member_hash;
2435                         }
2436                 }
2437  
2438                 /// <summary>
2439                 /// Cls compliance check whether methods or constructors parameters differing only in ref or out, or in array rank
2440                 /// </summary>
2441                 /// 
2442                 // TODO: refactor as method is always 'this'
2443                 public static void VerifyClsParameterConflict (ArrayList al, MethodCore method, MemberInfo this_builder)
2444                 {
2445                         EntryType tested_type = (method is Constructor ? EntryType.Constructor : EntryType.Method) | EntryType.Public;
2446  
2447                         for (int i = 0; i < al.Count; ++i) {
2448                                 MemberCache.CacheEntry entry = (MemberCache.CacheEntry) al [i];
2449                 
2450                                 // skip itself
2451                                 if (entry.Member == this_builder)
2452                                         continue;
2453                 
2454                                 if ((entry.EntryType & tested_type) != tested_type)
2455                                         continue;
2456                 
2457                                 MethodBase method_to_compare = (MethodBase)entry.Member;
2458                                 AttributeTester.Result result = AttributeTester.AreOverloadedMethodParamsClsCompliant (
2459                                         method.ParameterTypes, TypeManager.GetParameterData (method_to_compare).Types);
2460
2461                                 if (result == AttributeTester.Result.Ok)
2462                                         continue;
2463
2464                                 IMethodData md = TypeManager.GetMethod (method_to_compare);
2465
2466                                 // TODO: now we are ignoring CLSCompliance(false) on method from other assembly which is buggy.
2467                                 // However it is exactly what csc does.
2468                                 if (md != null && !md.IsClsComplianceRequired ())
2469                                         continue;
2470                 
2471                                 Report.SymbolRelatedToPreviousError (entry.Member);
2472                                 switch (result) {
2473                                         case AttributeTester.Result.RefOutArrayError:
2474                                                 Report.Error (3006, method.Location, "Overloaded method `{0}' differing only in ref or out, or in array rank, is not CLS-compliant", method.GetSignatureForError ());
2475                                                 continue;
2476                                         case AttributeTester.Result.ArrayArrayError:
2477                                                 Report.Error (3007, method.Location, "Overloaded method `{0}' differing only by unnamed array types is not CLS-compliant", method.GetSignatureForError ());
2478                                                 continue;
2479                                 }
2480
2481                                 throw new NotImplementedException (result.ToString ());
2482                         }
2483                 }
2484         }
2485 }