X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fmcs%2Frootcontext.cs;h=7f7b5aa760e25560c4aed68fa7d458e8eaee696e;hb=1b5cec0192f772817f77f522277851531b6f0aa8;hp=3f8a48b3b41b73155fa94ce927ca9203223289ad;hpb=7e9bc7847d18354c03d54777749485a7947f59e5;p=mono.git diff --git a/mcs/mcs/rootcontext.cs b/mcs/mcs/rootcontext.cs old mode 100755 new mode 100644 index 3f8a48b3b41..7f7b5aa760e --- a/mcs/mcs/rootcontext.cs +++ b/mcs/mcs/rootcontext.cs @@ -7,6 +7,7 @@ // Licensed under the terms of the GNU GPL // // (C) 2001 Ximian, Inc (http://www.ximian.com) +// (C) 2004 Novell, Inc using System; using System.Collections; @@ -16,6 +17,12 @@ using System.Diagnostics; namespace Mono.CSharp { + public enum LanguageVersion + { + Default = 0, + ISO_1 = 1 + } + public class RootContext { // @@ -32,22 +39,20 @@ namespace Mono.CSharp { // // Whether we are being linked against the standard libraries. // This is only used to tell whether `System.Object' should - // have a parent or not. + // have a base class or not. // - public static bool StdLib = true; + public static bool StdLib; // // This keeps track of the order in which classes were defined // so that we can poulate them in that order. // - // Order is important, because we need to be able to tell by - // examining the parent's list of methods which ones are virtual + // Order is important, because we need to be able to tell, by + // examining the list of methods of the base class, which ones are virtual // or abstract as well as the parent names (to implement new, // override). // static ArrayList type_container_resolve_order; - static ArrayList interface_resolve_order; - static ArrayList attribute_types; // // Holds a reference to the Private Implementation Details @@ -57,17 +62,19 @@ namespace Mono.CSharp { static TypeBuilder impl_details_class; - public static int WarningLevel = 2; + public static int WarningLevel; - public static Target Target = Target.Exe; + public static Target Target; public static string TargetExt = ".exe"; public static bool VerifyClsCompliance = true; - // - // If set, enable C# version 2 features - // - public static bool V2 = true; + /// + /// Holds /optimize option + /// + public static bool Optimize = true; + + public static LanguageVersion Version; // // We keep strongname related info here because @@ -75,16 +82,40 @@ namespace Mono.CSharp { // public static string StrongNameKeyFile; public static string StrongNameKeyContainer; - public static bool StrongNameDelaySign = false; + public static bool StrongNameDelaySign; + + // + // If set, enable XML documentation generation + // + public static Documentation Documentation; + + static public string MainClass; // // Constructor // static RootContext () + { + Reset (); + } + + public static void Reset () { tree = new Tree (); - interface_resolve_order = new ArrayList (); type_container_resolve_order = new ArrayList (); + EntryPoint = null; + WarningLevel = 3; + Checked = false; + Unsafe = false; + StdLib = true; + StrongNameKeyFile = null; + StrongNameKeyContainer = null; + StrongNameDelaySign = false; + MainClass = null; + Target = Target.Exe; + Version = LanguageVersion.Default; + Documentation = null; + impl_details_class = null; } public static bool NeedsEntryPoint { @@ -99,43 +130,21 @@ namespace Mono.CSharp { } } - static public string MainClass; - - public static void RegisterOrder (Interface iface) - { - interface_resolve_order.Add (iface); - } - public static void RegisterOrder (TypeContainer tc) { type_container_resolve_order.Add (tc); } - - public static void RegisterAttribute (TypeContainer tc) - { - if (attribute_types == null) - attribute_types = new ArrayList (); - - attribute_types.Add (tc); - } // // The default compiler checked state // - static public bool Checked = false; + static public bool Checked; // // Whether to allow Unsafe code // - static public bool Unsafe = false; + static public bool Unsafe; - static string MakeFQN (string nsn, string name) - { - if (nsn == "") - return name; - return String.Concat (nsn, ".", name); - } - // // This function is used to resolve the hierarchy tree. // It processes interfaces, structs and classes in that order. @@ -145,13 +154,6 @@ namespace Mono.CSharp { // static public void ResolveTree () { - // - // Process the attribute types separately and before anything else - // - if (attribute_types != null) - foreach (TypeContainer tc in attribute_types) - tc.DefineType (); - // // Interfaces are processed next, as classes and // structs might inherit from an object or implement @@ -162,7 +164,7 @@ namespace Mono.CSharp { ArrayList ifaces = root.Interfaces; if (ifaces != null){ - foreach (Interface i in ifaces) + foreach (TypeContainer i in ifaces) i.DefineType (); } @@ -273,7 +275,7 @@ namespace Mono.CSharp { object o = root.GetDefinition (name); if (o == null){ Report.Error (518, "The predefined type `" + name + "' is not defined"); - Environment.Exit (1); + return; } if (!(o is Delegate)){ @@ -295,6 +297,7 @@ namespace Mono.CSharp { TypeManager.object_type = BootstrapCorlib_ResolveClass (root, "System.Object"); TypeManager.value_type = BootstrapCorlib_ResolveClass (root, "System.ValueType"); TypeManager.attribute_type = BootstrapCorlib_ResolveClass (root, "System.Attribute"); + TypeManager.indexer_name_type = BootstrapCorlib_ResolveClass (root, "System.Runtime.CompilerServices.IndexerNameAttribute"); string [] interfaces_first_stage = { "System.IComparable", "System.ICloneable", @@ -340,6 +343,7 @@ namespace Mono.CSharp { "System.Char", "System.Boolean", "System.Decimal", "System.Void", "System.RuntimeFieldHandle", + "System.RuntimeArgumentHandle", "System.RuntimeTypeHandle", "System.IntPtr", "System.TypedReference", @@ -353,6 +357,9 @@ namespace Mono.CSharp { // These are classes that depends on the core interfaces // string [] classes_second_stage = { + "System.Enum", + "System.String", + "System.Array", "System.Reflection.MemberInfo", "System.Type", "System.Exception", @@ -374,25 +381,28 @@ namespace Mono.CSharp { "System.ParamArrayAttribute", "System.CLSCompliantAttribute", "System.Security.UnverifiableCodeAttribute", - "System.Runtime.CompilerServices.IndexerNameAttribute", + "System.Security.Permissions.SecurityAttribute", + "System.Runtime.CompilerServices.DecimalConstantAttribute", "System.Runtime.InteropServices.InAttribute", + "System.Runtime.InteropServices.OutAttribute", "System.Runtime.InteropServices.StructLayoutAttribute", "System.Runtime.InteropServices.FieldOffsetAttribute", "System.InvalidOperationException", - "System.MarshalByRefObject" + "System.NotSupportedException", + "System.MarshalByRefObject", + "System.Security.CodeAccessPermission" }; - // We must store them here before calling BootstrapCorlib_ResolveDelegate. - TypeManager.string_type = BootstrapCorlib_ResolveClass (root, "System.String"); - TypeManager.enum_type = BootstrapCorlib_ResolveClass (root, "System.Enum"); - TypeManager.array_type = BootstrapCorlib_ResolveClass (root, "System.Array"); - TypeManager.multicast_delegate_type = BootstrapCorlib_ResolveClass (root, "System.MulticastDelegate"); - TypeManager.delegate_type = BootstrapCorlib_ResolveClass (root, "System.Delegate"); - foreach (string cname in classes_second_stage) BootstrapCorlib_ResolveClass (root, cname); BootstrapCorlib_ResolveDelegate (root, "System.AsyncCallback"); + + // 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); } // @@ -413,13 +423,6 @@ namespace Mono.CSharp { foreach (Enum en in root.Enums) en.CloseType (); - if (attribute_types != null) - foreach (TypeContainer tc in attribute_types) - tc.CloseType (); - - foreach (Interface iface in interface_resolve_order) - iface.CloseType (); - // // We do this in two passes, first we close the structs, // then the classes, because it seems the code needs it this @@ -427,13 +430,13 @@ namespace Mono.CSharp { // make sure that we define the structs in order as well. // foreach (TypeContainer tc in type_container_resolve_order){ - if (tc is Struct && tc.Parent == tree.Types){ + if (tc.Kind == Kind.Struct && tc.Parent == tree.Types){ tc.CloseType (); } } foreach (TypeContainer tc in type_container_resolve_order){ - if (!(tc is Struct && tc.Parent == tree.Types)) + if (!(tc.Kind == Kind.Struct && tc.Parent == tree.Types)) tc.CloseType (); } @@ -446,15 +449,17 @@ namespace Mono.CSharp { // If we have a class, close it // if (helper_classes != null){ - foreach (TypeBuilder type_builder in helper_classes) + foreach (TypeBuilder type_builder in helper_classes) { +#if NET_2_0 + type_builder.SetCustomAttribute (TypeManager.compiler_generated_attr); +#endif type_builder.CreateType (); + } } - attribute_types = null; - interface_resolve_order = null; type_container_resolve_order = null; helper_classes = null; - tree = null; + //tree = null; TypeManager.CleanUp (); } @@ -462,137 +467,14 @@ namespace Mono.CSharp { /// Used to register classes that need to be closed after all the /// user defined classes /// - public static void RegisterHelperClass (TypeBuilder helper_class) + public static void RegisterCompilerGeneratedType (TypeBuilder helper_class) { if (helper_classes == null) helper_classes = new ArrayList (); - helper_classes.Add (helper_class); - } - - // - // This idea is from Felix Arrese-Igor - // - // Returns : the implicit parent of a composite namespace string - // eg. Implicit parent of A.B is A - // - static public string ImplicitParent (string ns) - { - int i = ns.LastIndexOf ('.'); - if (i < 0) - return null; - - return ns.Substring (0, i); - } - - static Type NamespaceLookup (DeclSpace ds, string name, bool silent, - Location loc) - { - // - // Try in the current namespace and all its implicit parents - // - for (NamespaceEntry ns = ds.NamespaceEntry; ns != null; ns = ns.ImplicitParent) { - object result = ns.Lookup (ds, name, silent, loc); - if (result == null) - continue; - if (result is Type) - return (Type) result; - - return null; - } - - return null; + helper_classes.Add (helper_class); } - // - // Public function used to locate types, this can only - // be used after the ResolveTree function has been invoked. - // - // Returns: Type or null if they type can not be found. - // - // Come to think of it, this should be a DeclSpace - // - static public Type LookupType (DeclSpace ds, string name, bool silent, Location loc) - { - Type t; - - if (ds.Cache.Contains (name)) { - t = (Type) ds.Cache [name]; - } else { - // - // For the case the type we are looking for is nested within this one - // or is in any base class - // - DeclSpace containing_ds = ds; - while (containing_ds != null){ - - // if the member cache has been created, lets use it. - // the member cache is MUCH faster. - if (containing_ds.MemberCache != null) { - t = containing_ds.MemberCache.FindNestedType (name); - if (t == null) { - containing_ds = containing_ds.Parent; - continue; - } - - ds.Cache [name] = t; - return t; - } - - // no member cache. Do it the hard way -- reflection - Type current_type = containing_ds.TypeBuilder; - - while (current_type != null && - current_type != TypeManager.object_type) { - // - // nested class - // - t = TypeManager.LookupType (current_type.FullName + "." + name); - if (t != null){ - ds.Cache [name] = t; - return t; - } - - current_type = current_type.BaseType; - } - - containing_ds = containing_ds.Parent; - } - - t = NamespaceLookup (ds, name, silent, loc); - if (!silent) - ds.Cache [name] = t; - } - - if (t == null && !silent) - Report.Error (246, loc, "Cannot find type `"+name+"'"); - - return t; - } - - // - // This is the silent version of LookupType, you can use this - // to `probe' for a type - // - static public Type LookupType (TypeContainer tc, string name, Location loc) - { - return LookupType (tc, name, true, loc); - } - - static public bool IsNamespace (string name) - { - Namespace ns; - - if (tree.Namespaces != null){ - ns = (Namespace) tree.Namespaces [name]; - - if (ns != null) - return true; - } - - return false; - } - static void Report1530 (Location loc) { Report.Error (1530, loc, "Keyword new not allowed for namespace elements"); @@ -603,7 +485,7 @@ namespace Mono.CSharp { DeclSpace ds = (DeclSpace) root.GetDefinition (name); ds.DefineMembers (root); - ds.Define (root); + ds.Define (); } static public void BootCorlib_PopulateCoreTypes () @@ -613,6 +495,7 @@ namespace Mono.CSharp { PopulateCoreType (root, "System.Object"); PopulateCoreType (root, "System.ValueType"); PopulateCoreType (root, "System.Attribute"); + PopulateCoreType (root, "System.Runtime.CompilerServices.IndexerNameAttribute"); } // @@ -625,19 +508,6 @@ namespace Mono.CSharp { { TypeContainer root = Tree.Types; - if (attribute_types != null) - foreach (TypeContainer tc in attribute_types) - tc.DefineMembers (root); - - if (interface_resolve_order != null){ - foreach (Interface iface in interface_resolve_order) - if ((iface.ModFlags & Modifiers.NEW) == 0) - iface.DefineMembers (root); - else - Report1530 (iface.Location); - } - - if (type_container_resolve_order != null){ if (RootContext.StdLib){ foreach (TypeContainer tc in type_container_resolve_order) @@ -647,8 +517,9 @@ namespace Mono.CSharp { // When compiling corlib, these types have already been // populated from BootCorlib_PopulateCoreTypes (). if (((tc.Name == "System.Object") || - (tc.Name == "System.Attribute") || - (tc.Name == "System.ValueType"))) + (tc.Name == "System.Attribute") || + (tc.Name == "System.ValueType") || + (tc.Name == "System.Runtime.CompilerServices.IndexerNameAttribute"))) continue; tc.DefineMembers (root); @@ -701,17 +572,6 @@ namespace Mono.CSharp { { TypeContainer root = Tree.Types; - if (attribute_types != null) - foreach (TypeContainer tc in attribute_types) - tc.Define (root); - - if (interface_resolve_order != null){ - foreach (Interface iface in interface_resolve_order) - if ((iface.ModFlags & Modifiers.NEW) == 0) - iface.Define (root); - } - - if (type_container_resolve_order != null){ foreach (TypeContainer tc in type_container_resolve_order) { // When compiling corlib, these types have already been @@ -719,11 +579,12 @@ namespace Mono.CSharp { if (!RootContext.StdLib && ((tc.Name == "System.Object") || (tc.Name == "System.Attribute") || - (tc.Name == "System.ValueType"))) + (tc.Name == "System.ValueType") || + (tc.Name == "System.Runtime.CompilerServices.IndexerNameAttribute"))) continue; if ((tc.ModFlags & Modifiers.NEW) == 0) - tc.Define (root); + tc.Define (); } } @@ -731,47 +592,35 @@ namespace Mono.CSharp { if (delegates != null){ foreach (Delegate d in delegates) if ((d.ModFlags & Modifiers.NEW) == 0) - d.Define (root); + d.Define (); } ArrayList enums = root.Enums; if (enums != null){ foreach (Enum en in enums) if ((en.ModFlags & Modifiers.NEW) == 0) - en.Define (root); + en.Define (); } } static public void EmitCode () { - if (attribute_types != null) - foreach (TypeContainer tc in attribute_types) - tc.Emit (); - - CodeGen.Assembly.Emit (Tree.Types); - CodeGen.Module.Emit (Tree.Types); - if (Tree.Types.Enums != null) { foreach (Enum e in Tree.Types.Enums) - e.Emit (Tree.Types); + e.Emit (); } - if (interface_resolve_order != null) { - foreach (Interface iface in interface_resolve_order) - iface.Emit (Tree.Types); - } - if (type_container_resolve_order != null) { foreach (TypeContainer tc in type_container_resolve_order) - tc.EmitConstants (); - + tc.EmitType (); + foreach (TypeContainer tc in type_container_resolve_order) - tc.Emit (); + tc.VerifyMembers (); } if (Tree.Types.Delegates != null) { foreach (Delegate d in Tree.Types.Delegates) - d.Emit (Tree.Types); + d.Emit (); } // // Run any hooks after all the types have been defined. @@ -780,6 +629,9 @@ namespace Mono.CSharp { if (EmitCodeHook != null) EmitCodeHook (); + + CodeGen.Assembly.Emit (Tree.Types); + CodeGen.Module.Emit (Tree.Types); } // @@ -822,7 +674,7 @@ namespace Mono.CSharp { TypeAttributes.NotPublic, TypeManager.object_type); - RegisterHelperClass (impl_details_class); + RegisterCompilerGeneratedType (impl_details_class); } fb = impl_details_class.DefineInitializedData (