* MenuAPI.cs: On instance of MenuTracker check if source control is
[mono.git] / mcs / mcs / rootcontext.cs
index 5778a87eeb68b48f4d08fe3deba2af950e294bf2..baa9af15093de05a3d5c76d8a3a2eb1c00fcf691 100644 (file)
@@ -2,7 +2,9 @@
 // rootcontext.cs: keeps track of our tree representation, and assemblies loaded.
 //
 // Author: Miguel de Icaza (miguel@ximian.com)
-//         Ravi Pratap     (ravi@ximian.com)
+//            Ravi Pratap  (ravi@ximian.com)
+//            Marek Safar  (marek.safar@gmail.com)
+//
 //
 // Licensed under the terms of the GNU GPL
 //
@@ -19,8 +21,16 @@ namespace Mono.CSharp {
 
        public enum LanguageVersion
        {
-               Default = 0,
-               ISO_1   = 1
+               ISO_1           = 1,
+               Default_MCS     = 2,
+               ISO_2           = 3,
+               LINQ            = 4,
+
+#if GMCS_SOURCE
+               Default         = LINQ
+#else
+               Default         = Default_MCS
+#endif
        }
 
        public class RootContext {
@@ -62,8 +72,6 @@ namespace Mono.CSharp {
                
                static TypeBuilder impl_details_class;
 
-               public static int WarningLevel;
-
                public static Target Target;
                public static string TargetExt;
 
@@ -104,7 +112,7 @@ namespace Mono.CSharp {
                        root = new RootTypes ();
                        type_container_resolve_order = new ArrayList ();
                        EntryPoint = null;
-                       WarningLevel = 3;
+                       Report.WarningLevel = 3;
                        Checked = false;
                        Unsafe = false;
                        StdLib = true;
@@ -158,11 +166,8 @@ namespace Mono.CSharp {
                        // a set of interfaces, we need to be able to tell
                        // them appart by just using the TypeManager.
                        //
-                       ArrayList ifaces = root.Interfaces;
-                       if (ifaces != null){
-                               foreach (TypeContainer i in ifaces) 
-                                       i.DefineType ();
-                       }
+                       foreach (TypeContainer tc in root.Types)
+                               tc.CreateType ();
 
                        foreach (TypeContainer tc in root.Types)
                                tc.DefineType ();
@@ -170,97 +175,81 @@ namespace Mono.CSharp {
                        if (root.Delegates != null)
                                foreach (Delegate d in root.Delegates) 
                                        d.DefineType ();
-
-                       if (root.Enums != null)
-                               foreach (Enum e in root.Enums)
-                                       e.DefineType ();
                }
 
-               static void Error_TypeConflict (string name, Location loc)
-               {
-                       Report.Error (
-                               520, loc, "`" + name + "' conflicts with a predefined type");
-               }
+               delegate bool VerifyBootstrapType (Type t);
 
-               static void Error_TypeConflict (string name)
+               static Type BootstrapCorlib_ResolveType (TypeContainer root, string name, VerifyBootstrapType typeVerifier)
                {
-                       Report.Error (
-                               520, "`" + name + "' conflicts with a predefined type");
-               }
-
-               //
-               // Resolves a single class during the corlib bootstrap process
-               //
-               static TypeBuilder BootstrapCorlib_ResolveClass (TypeContainer root, string name)
-               {
-                       object o = root.GetDefinition (name);
-                       if (o == null){
-                               Report.Error (518, "The predefined type `" + name + "' is not defined or imported");
+                       TypeLookupExpression tle = new TypeLookupExpression (name);
+                       Report.DisableReporting ();
+                       TypeExpr te = tle.ResolveAsTypeTerminal (root, false);
+                       Report.EnableReporting ();
+                       if (te == null) {
+                               Report.Error (518, "The predefined type `{0}' is not defined or imported", name);
                                return null;
                        }
 
-                       if (!(o is Class)){
-                               if (o is DeclSpace){
-                                       DeclSpace d = (DeclSpace) o;
-
-                                       Error_TypeConflict (name, d.Location);
-                               } else
-                                       Error_TypeConflict (name);
+                       Type t = te.Type;
+                       if (!typeVerifier (t)) {
+                               MemberCore mc = root.GetDefinition (name);
+                               Location loc = Location.Null;
+                               if (mc != null) {
+                                       name = mc.GetSignatureForError ();
+                                       loc = mc.Location;
+                               }
 
+                               Report.Error (520, loc, "The predefined type `{0}' is not declared correctly", name);
                                return null;
                        }
 
-                       return ((DeclSpace) o).DefineType ();
+                       AttributeTester.RegisterNonObsoleteType (t);
+                       return t;
                }
-
                //
-               // Resolves a struct during the corlib bootstrap process
+               // Resolves a single class during the corlib bootstrap process
                //
-               static void BootstrapCorlib_ResolveStruct (TypeContainer root, string name)
+               static Type BootstrapCorlib_ResolveClass (TypeContainer root, string name)
                {
-                       object o = root.GetDefinition (name);
-                       if (o == null){
-                               Report.Error (518, "The predefined type `" + name + "' is not defined or imported");
-                               return;
-                       }
-
-                       if (!(o is Struct)){
-                               if (o is DeclSpace){
-                                       DeclSpace d = (DeclSpace) o;
-
-                                       Error_TypeConflict (name, d.Location);
-                               } else
-                                       Error_TypeConflict (name);
-
-                               return;
-                       }
+                       return BootstrapCorlib_ResolveType (root, name, IsClass);
+               }
 
-                       ((DeclSpace) o).DefineType ();
+               static bool IsClass (Type t)
+               {
+                       DeclSpace ds = TypeManager.LookupDeclSpace (t);
+                       if (ds != null)
+                               return ds is Class;
+                       return t.IsClass;
                }
 
                //
                // Resolves a struct during the corlib bootstrap process
                //
-               static void BootstrapCorlib_ResolveInterface (TypeContainer root, string name)
+               static Type BootstrapCorlib_ResolveStruct (TypeContainer root, string name)
                {
-                       object o = root.GetDefinition (name);
-                       if (o == null){
-                               Report.Error (518, "The predefined type `" + name + "' is not defined or imported");
-                               return;
-                       }
-
-                       if (!(o is Interface)){
-                               if (o is DeclSpace){
-                                       DeclSpace d = (DeclSpace) o;
+                       return BootstrapCorlib_ResolveType (root, name, IsStruct);
+               }
 
-                                       Error_TypeConflict (name, d.Location);
-                               } else
-                                       Error_TypeConflict (name);
+               static bool IsStruct (Type t)
+               {
+                       DeclSpace ds = TypeManager.LookupDeclSpace (t);
+                       if (ds != null)
+                               return ds is Struct;
+                       
+                       return TypeManager.IsSubclassOf (t, TypeManager.value_type);                    
+               }
 
-                               return;
-                       }
+               //
+               // Resolves an interface during the corlib bootstrap process
+               //
+               static void BootstrapCorlib_ResolveInterface (TypeContainer root, string name)
+               {
+                       BootstrapCorlib_ResolveType (root, name, IsInterface);
+               }
 
-                       ((DeclSpace) o).DefineType ();
+               static bool IsInterface (Type t)
+               {
+                       return t.IsInterface;
                }
 
                //
@@ -268,20 +257,13 @@ namespace Mono.CSharp {
                //
                static void BootstrapCorlib_ResolveDelegate (TypeContainer root, string name)
                {
-                       object o = root.GetDefinition (name);
-                       if (o == null){
-                               Report.Error (518, "The predefined type `" + name + "' is not defined or imported");
-                               return;
-                       }
-
-                       if (!(o is Delegate)){
-                               Error_TypeConflict (name);
-                               return;
-                       }
+                       BootstrapCorlib_ResolveType (root, name, IsDelegate);
+               }
 
-                       ((DeclSpace) o).DefineType ();
+               static bool IsDelegate (Type t)
+               {
+                       return TypeManager.IsDelegateType (t);
                }
-               
 
                /// <summary>
                ///    Resolves the core types in the compiler when compiling with --nostdlib
@@ -292,7 +274,18 @@ namespace Mono.CSharp {
                        TypeManager.system_object_expr.Type = TypeManager.object_type;
                        TypeManager.value_type = BootstrapCorlib_ResolveClass (root, "System.ValueType");
                        TypeManager.system_valuetype_expr.Type = TypeManager.value_type;
+
+                       //
+                       // The core attributes
+                       //
+                       BootstrapCorlib_ResolveInterface (root, "System.Runtime.InteropServices._Attribute");
                        TypeManager.attribute_type = BootstrapCorlib_ResolveClass (root, "System.Attribute");
+                       TypeManager.obsolete_attribute_type = BootstrapCorlib_ResolveClass (root, "System.ObsoleteAttribute");
+                       if (TypeManager.obsolete_attribute_type != null) {
+                               Class c = TypeManager.LookupClass (TypeManager.obsolete_attribute_type);
+                               c.DefineMembers ();
+                       }
+                       
                        TypeManager.indexer_name_type = BootstrapCorlib_ResolveClass (root, "System.Runtime.CompilerServices.IndexerNameAttribute");
                        
                        string [] interfaces_first_stage = {
@@ -333,7 +326,7 @@ namespace Mono.CSharp {
                                "System.Int32",   "System.UInt32",
                                "System.Int64",   "System.UInt64",
                        };
-
+                       
                        foreach (string cname in structs_first_stage)
                                BootstrapCorlib_ResolveStruct (root, cname);
 
@@ -345,7 +338,7 @@ namespace Mono.CSharp {
 
                        string [] structs_second_stage = {
                                "System.Single",  "System.Double",
-                               "System.Char",    "System.Boolean",
+                               "System.Char",
                                "System.Decimal", "System.Void",
                                "System.RuntimeFieldHandle",
                                "System.RuntimeArgumentHandle",
@@ -355,6 +348,8 @@ namespace Mono.CSharp {
                                "System.ArgIterator"
                        };
                        
+                       TypeManager.bool_type = BootstrapCorlib_ResolveStruct (root, "System.Boolean");
+                       
                        foreach (string cname in structs_second_stage)
                                BootstrapCorlib_ResolveStruct (root, cname);
                        
@@ -390,7 +385,6 @@ namespace Mono.CSharp {
                                "System.Runtime.CompilerServices.FixedBufferAttribute",
 #endif
                                "System.Diagnostics.ConditionalAttribute",
-                               "System.ObsoleteAttribute",
                                "System.ParamArrayAttribute",
                                "System.CLSCompliantAttribute",
                                "System.Security.UnverifiableCodeAttribute",
@@ -417,13 +411,10 @@ namespace Mono.CSharp {
 #if GMCS_SOURCE
                        BootstrapCorlib_ResolveStruct (root, "System.Nullable`1");
 #endif
-                       BootstrapCorlib_ResolveDelegate (root, "System.AsyncCallback");
+                       TypeManager.delegate_type = BootstrapCorlib_ResolveClass (root, "System.Delegate");
+                       BootstrapCorlib_ResolveClass (root, "System.MulticastDelegate");
 
-                       // These will be defined indirectly during the previous ResolveDelegate.
-                       // However make sure the rest of the checks happen.
-                       string [] delegate_types = { "System.Delegate", "System.MulticastDelegate" };
-                       foreach (string cname in delegate_types)
-                               BootstrapCorlib_ResolveClass (root, cname);
+                       BootstrapCorlib_ResolveDelegate (root, "System.AsyncCallback");
                }
                        
                // <summary>
@@ -438,10 +429,6 @@ namespace Mono.CSharp {
                // </remarks>
                static public void CloseTypes ()
                {
-                       if (root.Enums != null)
-                               foreach (Enum en in root.Enums)
-                                       en.CloseType ();
-
                        //
                        // We do this in two passes, first we close the structs,
                        // then the classes, because it seems the code needs it this
@@ -497,6 +484,9 @@ namespace Mono.CSharp {
                static public void PopulateCoreType (TypeContainer root, string name)
                {
                        DeclSpace ds = (DeclSpace) root.GetDefinition (name);
+                       // Core type was imported
+                       if (ds == null)
+                               return;
 
                        ds.DefineMembers ();
                        ds.Define ();
@@ -520,10 +510,8 @@ namespace Mono.CSharp {
                {
 
                        if (type_container_resolve_order != null){
-#if GMCS_SOURCE
                                foreach (TypeContainer tc in type_container_resolve_order)
                                        tc.ResolveType ();
-#endif
                                foreach (TypeContainer tc in type_container_resolve_order)
                                        tc.DefineMembers ();
                        }
@@ -534,12 +522,6 @@ namespace Mono.CSharp {
                                        d.DefineMembers ();
                        }
 
-                       ArrayList enums = root.Enums;
-                       if (enums != null){
-                               foreach (Enum en in enums)
-                                       en.DefineMembers ();
-                       }
-
                        //
                        // Check for cycles in the struct layout
                        //
@@ -585,21 +567,10 @@ namespace Mono.CSharp {
                                        tc.Define ();
                                }
                        }
-
-                       ArrayList enums = root.Enums;
-                       if (enums != null){
-                               foreach (Enum en in enums)
-                                       en.Define ();
-                       }
                }
 
                static public void EmitCode ()
                {
-                       if (root.Enums != null) {
-                               foreach (Enum e in root.Enums)
-                                       e.Emit ();
-                       }
-
                        if (type_container_resolve_order != null) {
                                foreach (TypeContainer tc in type_container_resolve_order)
                                        tc.EmitType ();