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