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