2002-02-11 Ravi Pratap <ravi@ximian.com>
[mono.git] / mcs / mcs / rootcontext.cs
index 04094ce4e74f3c1ad088b99e26d464538e07b737..922800caab16fe0e717c86237f48df92c955d9a0 100755 (executable)
@@ -13,72 +13,77 @@ using System.Reflection;
 using System.Reflection.Emit;
 using System.Diagnostics;
 
-namespace CIR {
+namespace Mono.CSharp {
 
        public class RootContext {
 
                //
                // Contains the parsed tree
                //
-               Tree tree;
+               static Tree tree;
 
                //
                // Contains loaded assemblies and our generated code as we go.
                //
-               TypeManager type_manager;
+               static public TypeManager TypeManager;
 
                //
                // The System.Reflection.Emit CodeGenerator
                //
-               CilCodeGen cg;
+               static CodeGen cg;
 
+               static public bool Optimize;
+               
                //
-               // The module builder pointer
+               // The module builder pointer.
                //
-               ModuleBuilder mb;
+               static ModuleBuilder mb;
 
                //
-               // Error reporting object
-               // 
-               Report report;
+               // Whether we are being linked against the standard libraries.
+               // This is only used to tell whether `System.Object' should
+               // have a parent or not.
+               //
+               public static bool StdLib = true;
 
                //
-               // The `System.Object' and `System.ValueType' types, as they
-               // are used often
+               // This keeps track of the order in which classes were defined
+               // so that we can poulate them in that order.
                //
-               Type object_type;
-               Type value_type;
+               // Order is important, because we need to be able to tell by
+               // examining the parent's list of methods 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;
 
                //
-               // Whether we are being linked against the standard libraries.
-               // This is only used to tell whether `System.Object' should
-               // have a parent or not.
+               // Holds a reference to the Private Implementation Details
+               // class.
                //
-               bool stdlib = true;
+               static TypeBuilder impl_details_class;
+
+               public static int WarningLevel = 2;
                
-               public RootContext ()
+               //
+               // Constructor
+               //
+               static RootContext ()
                {
                        tree = new Tree ();
-                       type_manager = new TypeManager ();
-                       report = new Report ();
-
-                       object_type = System.Type.GetType ("System.Object");
-                       value_type = System.Type.GetType ("System.ValueType");
+                       TypeManager = new TypeManager ();
                }
 
-               public TypeManager TypeManager {
-                       get {
-                               return type_manager;
-                       }
-               }
-
-               public Tree Tree {
+               static public Tree Tree {
                        get {
                                return tree;
                        }
                }
 
-               public CilCodeGen CodeGen {
+               static public string MainClass;
+               
+               static public CodeGen CodeGen {
                        get {
                                return cg;
                        }
@@ -94,445 +99,321 @@ namespace CIR {
                        }
                }
 
-               //
-               // Returns the Type that represents the interface whose name
-               // is `name'.
-               //
+               public static void RegisterOrder (Interface iface)
+               {
+                       interface_resolve_order.Add (iface);
+               }
                
-               Type GetInterfaceTypeByName (string name)
+               public static void RegisterOrder (TypeContainer tc)
                {
-                       Interface parent;
-                       Type t = type_manager.LookupType (name);
-
-                       if (t != null) {
-
-                               if (t.IsInterface)
-                                       return t;
-                               
-                               string cause;
-                               
-                               if (t.IsValueType)
-                                       cause = "is a struct";
-                               else if (t.IsClass) 
-                                       cause = "is a class";
-                               else
-                                       cause = "Should not happen.";
-
-                               report.Error (527, "`"+name+"' " + cause + ", need an interface instead");
-                               
-                               return null;
-                       }
-
-                       parent = (Interface) tree.Interfaces [name];
-                       if (parent == null){
-                               string cause = "is undefined";
-                               
-                               if (tree.Classes [name] != null)
-                                       cause = "is a class";
-                               else if (tree.Structs [name] != null)
-                                       cause = "is a struct";
-                               
-                               report.Error (527, "`"+name+"' " + cause + ", need an interface instead");
-                               return null;
-                       }
-                       
-                       t = CreateInterface ((Interface) parent);
-                       if (t == null){
-                               report.Error (529,
-                                             "Inherited interface `"+name+"' is circular");
-                               return null;
-                       }
-
-                       return t;
+                       type_container_resolve_order.Add (tc);
                }
                
+               // 
+               // The default compiler checked state
                //
-               // Returns the list of interfaces that this interface implements
-               // Or null if it does not implement any interface.
+               static public bool Checked = false;
+
                //
-               // Sets the error boolean accoringly.
+               // Whether to allow Unsafe code
                //
-               Type [] GetInterfaceBases (Interface iface, out bool error)
+               static public bool Unsafe = false;
+               
+               static string MakeFQN (string nsn, string name)
                {
-                       ArrayList bases = iface.Bases;
-                       Type [] tbases;
-                       int i;
-
-                       error = false;
-                       if (bases == null)
-                               return null;
-                       
-                       tbases = new Type [bases.Count];
-                       i = 0;
-
-                       foreach (string name in iface.Bases){
-                               Type t;
-
-                               t = GetInterfaceTypeByName (name);
-                               if (t == null){
-                                       error = true;
-                                       return null;
-                               }
-                               
-                               tbases [i++] = t;
-                       }
+                       string prefix = (nsn == "" ? "" : nsn + ".");
 
-                       return tbases;
+                       return prefix + name;
                }
-               
-               //
-               // Creates the Interface @iface using the ModuleBuilder
-               //
-               // TODO:
-               //   Rework the way we recurse, because for recursive
-               //   definitions of interfaces (A:B and B:A) we report the
-               //   error twice, rather than once.  
+                      
+               // <remarks>
+               //   This function is used to resolve the hierarchy tree.
+               //   It processes interfaces, structs and classes in that order.
                //
-               TypeBuilder CreateInterface (Interface iface)
+               //   It creates the TypeBuilder's as it processes the user defined
+               //   types.  
+               // </remarks>
+               static public void ResolveTree ()
                {
-                       TypeBuilder tb = iface.Definition;
-                       Type [] ifaces;
-                       string name;
-                       bool error;
-
-                       if (tb != null)
-                               return tb;
-                       
-                       if (iface.InTransit)
-                               return null;
-                       
-                       iface.InTransit = true;
-
-                       name = iface.Name;
-
-                       ifaces = GetInterfaceBases (iface, out error);
-
-                       if (error)
-                               return null;
-
-                       tb = mb.DefineType (name,
-                                           TypeAttributes.Interface |
-                                           TypeAttributes.Public |
-                                           TypeAttributes.Abstract,
-                                           null,   // Parent Type
-                                           ifaces);
-                       iface.Definition = tb;
+                       //
+                       // Interfaces are processed first, as classes and
+                       // structs might inherit from an object or implement
+                       // a set of interfaces, we need to be able to tell
+                       // them appart by just using the TypeManager.
+                       //
 
-                       type_manager.AddUserType (name, tb);
+                       TypeContainer root = Tree.Types;
 
-                       iface.InTransit = false;
-                       return tb;
-               }
+                       ArrayList ifaces = root.Interfaces;
+                       if (ifaces != null){
+                               interface_resolve_order = new ArrayList ();
+                               
+                               foreach (Interface i in ifaces) 
+                                       i.DefineInterface (mb);
+                       }
+                                               
+                       type_container_resolve_order = new ArrayList ();
+                       
+                       foreach (TypeContainer tc in root.Types) 
+                               tc.DefineType (mb);
 
-               string MakeFQN (string nsn, string name)
-               {
-                       string prefix = (nsn == "" ? "" : nsn + ".");
+                       if (root.Delegates != null)
+                               foreach (Delegate d in root.Delegates) 
+                                       d.DefineDelegate (mb);
 
-                       return prefix + name;
+                       if (root.Enums != null)
+                               foreach (Enum e in root.Enums)
+                                       e.DefineEnum (mb);
+                       
                }
-                      
-               Type LookupInterfaceOrClass (string ns, string name, bool is_class, out bool error)
+                       
+               // <summary>
+               //   Closes all open types
+               // </summary>
+               //
+               // <remarks>
+               //   We usually use TypeBuilder types.  When we are done
+               //   creating the type (which will happen after we have added
+               //   methods, fields, etc) we need to "Define" them before we
+               //   can save the Assembly
+               // </remarks>
+               static public void CloseTypes ()
                {
-                       TypeContainer parent;
-                       Type t;
-
-                       error = false;
-                       name = MakeFQN (ns, name);
-                       Console.WriteLine ("Attempting to locate " + name);
+                       TypeContainer root = Tree.Types;
+                       
+                       ArrayList ifaces = root.Interfaces;
 
-                       t  = type_manager.LookupType (name);
-                       if (t != null)
-                               return t;
+                       if (root.Enums != null)
+                               foreach (Enum en in root.Enums)
+                                       en.CloseType ();
 
-                       if (is_class){
-                               parent = (Class) tree.Classes [name];
-                       } else {
-                               parent = (Struct) tree.Structs [name];
+                       if (interface_resolve_order != null){
+                               foreach (Interface iface in interface_resolve_order)
+                                       iface.CloseType ();
                        }
 
-                       if (parent != null){
-                               t = CreateType (parent, is_class);
-                               if (t == null){
-                                       report.Error (146, "Class definition is circular: `"+name+"'");
-                                       error = true;
-                                       return null;
+                       //
+                       // We do this in two passes, first we close the structs,
+                       // then the classes, because it seems the code needs it this
+                       // way.  If this is really what is going on, we should probably
+                       // make sure that we define the structs in order as well.
+                       //
+                       if (type_container_resolve_order != null){
+                               foreach (TypeContainer tc in type_container_resolve_order){
+                                       if (tc is Struct && tc.Parent == tree.Types){
+                                               tc.CloseType ();
+                                       }
                                }
 
-                               return t;
+                               foreach (TypeContainer tc in type_container_resolve_order){
+                                       if (!(tc is Struct && tc.Parent == tree.Types))
+                                               tc.CloseType ();                                        
+                               }
                        }
+                       
+                       if (root.Delegates != null)
+                               foreach (Delegate d in root.Delegates)
+                                       d.CloseDelegate ();
 
-                       return null;
+
+                       //
+                       // If we have a <PrivateImplementationDetails> class, close it
+                       //
+                       if (impl_details_class != null){
+                               impl_details_class.CreateType ();
+                       }
                }
                
                //
-               // returns the type for an interface or a class
+               // Public function used to locate types, this can only
+               // be used after the ResolveTree function has been invoked.
                //
-               Type GetInterfaceOrClass (TypeContainer tc, string name, bool is_class)
+               // Returns: Type or null if they type can not be found.
+               //
+               static public Type LookupType (DeclSpace ds, string name, bool silent, Location loc)
                {
                        Type t;
-                       bool error;
 
                        //
-                       // Attempt to lookup the class on our namespace
+                       // For the case the type we are looking for is nested within this one
+                       // or any base class
                        //
-                       t = LookupInterfaceOrClass (tc.Namespace.Name, name, is_class, out error);
-                       if (error)
-                               return null;
-                       
+                       DeclSpace containing_ds = ds;
+                       while (containing_ds != null){
+                               Type current_type = containing_ds.TypeBuilder;
+
+                               while (current_type != null) {
+                                       t = TypeManager.LookupType (current_type.FullName + "+" + name);
+                                       if (t != null)
+                                               return t;
+                                       current_type = current_type.BaseType;
+                               }
+
+                               containing_ds = containing_ds.Parent;
+                       }
+
+                       t = TypeManager.LookupType (MakeFQN (ds.Namespace.Name, name));
                        if (t != null)
                                return t;
 
-                       //
-                       // Attempt to lookup the class on any of the `using'
-                       // namespaces
-                       //
-                       for (Namespace ns = tc.Namespace; ns != null; ns = ns.Parent){
+                       // It's possible that name already is fully qualified. So we do
+                       // a simple direct lookup without adding any namespace names
+
+                       t = TypeManager.LookupType (name); 
+                       if (t != null)
+                               return t;
+                       
+                       for (Namespace ns = ds.Namespace; ns != null; ns = ns.Parent){
                                ArrayList using_list = ns.UsingTable;
 
                                if (using_list == null)
                                        continue;
-                               
-                               foreach (string n in using_list){
-                                       t = LookupInterfaceOrClass (n, name, is_class, out error);
-                                       if (error)
-                                               return null;
 
+                               foreach (string n in using_list){
+                                       t = TypeManager.LookupType (MakeFQN (n, name));
                                        if (t != null)
                                                return t;
                                }
-                               
                        }
-                       report.Error (246, "Can not find type `"+name+"'");
+
+                       if (!silent)
+                               Report.Error (246, loc, "Cannot find type `"+name+"'");
+                       
                        return null;
                }
 
-               //
-               // This function computes the Base class and also the
-               // list of interfaces that the class or struct @c implements.
-               //
-               // The return value is an array (might be null) of
-               // interfaces implemented (as Types).
-               //
-               // The @parent argument is set to the parent object or null
-               // if this is `System.Object'. 
-               //
-               Type [] GetClassBases (TypeContainer tc, bool is_class, out Type parent, out bool error)
+               // <summary>
+               //   This is the silent version of LookupType, you can use this
+               //   to `probe' for a type
+               // </summary>
+               static public Type LookupType (TypeContainer tc, string name, Location loc)
                {
-                       ArrayList bases = tc.Bases;
-                       int count;
-                       int start, j, i;
-                       
-                       error = false;
-
-                       if (is_class)
-                               parent = null;
-                       else
-                               parent = value_type;
-
-                       if (bases == null){
-                               if (is_class){
-                                       if (stdlib)
-                                               parent = object_type;
-                                       else if (tc.Name != "System.Object")
-                                               parent = object_type;
-                               } else {
-                                       //
-                                       // If we are compiling our runtime,
-                                       // and we are defining ValueType, then our
-                                       // parent is `System.Object'.
-                                       //
-                                       if (!stdlib && tc. Name == "System.ValueType")
-                                               parent = object_type;
-                               }
-
-                               return null;
-                       }
-
-                       //
-                       // Bases should be null if there are no bases at all
-                       //
-                       count = bases.Count;
-                       Debug.Assert (count > 0);
-
-                       if (is_class){
-                               string name = (string) bases [0];
-                               Type first = GetInterfaceOrClass (tc, name, is_class);
-
-                               if (first == null){
-                                       error = true;
-                                       return null;
-                               }
-                               
-                               if (first.IsClass){
-                                       parent = first;
-                                       start = 1;
-                               } else {
-                                       parent = object_type;
-                                       start = 0;
-                               }
-                       } else {
-                               start = 0;
-                       }
-
-                       Type [] ifaces = new Type [count-start];
-                       
-                       for (i = start, j = 0; i < count; i++, j++){
-                               string name = (string) bases [i];
-                               Type t = GetInterfaceOrClass (tc, name, is_class);
+                       return LookupType (tc, name, true, loc);
+               }
 
-                               if (t == null){
-                                       error = true;
-                                       return null;
-                               }
+               static public bool IsNamespace (string name)
+               {
+                       Namespace ns;
 
-                               if (is_class == false && !t.IsInterface){
-                                       report.Error (527, "In Struct `"+tc.Name+"', type `"+
-                                                     name+"' is not an interface");
-                                       error = true;
-                                       return null;
-                               }
-                               
-                               if (t.IsSealed) {
-                                       string detail = "";
-                                       
-                                       if (t.IsValueType)
-                                               detail = " (a class can not inherit from a struct)";
-                                                       
-                                       report.Error (509, "class `"+tc.Name+
-                                                     "': Cannot inherit from sealed class `"+
-                                                     bases [i]+"'"+detail);
-                                       error = true;
-                                       return null;
-                               }
+                       if (tree.Namespaces != null){
+                               ns = (Namespace) tree.Namespaces [name];
 
-                               if (t.IsClass) {
-                                       if (parent != null){
-                                               report.Error (527, "In Class `"+tc.Name+"', type `"+
-                                                             name+"' is not an interface");
-                                               error = true;
-                                               return null;
-                                       }
-                               }
-                               
-                               ifaces [j] = t;
+                               if (ns != null)
+                                       return true;
                        }
 
-                       return ifaces;
+                       return false;
                }
 
-               // <remarks>
-               //   Creates the TypeBuilder for the TypeContainer @tc (a Class or a Struct)
-               // </remarks>
-               //
-               TypeBuilder CreateType (TypeContainer tc, bool is_class)
+               static void Report1530 (Location loc)
                {
-                       TypeBuilder tb = tc.Definition;
-                       Type parent;
-                       Type [] ifaces;
-                       bool error;
-                       string name;
-                       
-                       if (tb != null)
-                               return tb;
-
-                       if (tc.InTransit)
-                               return null;
-                       tc.InTransit = true;
-
-                       name = tc.Name;
-
-                       ifaces = GetClassBases (tc, is_class, out parent, out error); 
-
-                       if (error)
-                               return null;
-
-                       tb = mb.DefineType (name,
-                                           tc.TypeAttr | TypeAttributes.Class,
-                                           parent,
-                                           ifaces);
-
-                       tc.Definition = tb;
-                       type_manager.AddUserType (name, tb);
-                       tc.InTransit = false;
-                       
-                       return tb;
+                       Report.Error (1530, loc, "Keyword new not allowed for namespace elements");
                }
-
-               // <remarks>
-               //   This function is used to resolve the hierarchy tree.
-               //   It processes interfaces, structs and classes in that order.
+               
+               // <summary>
+               //   Populates the structs and classes with fields and methods
+               // </summary>
                //
-               //   It creates the TypeBuilder's as it processes the user defined
-               //   types.  
-               // </remarks>
-               public void ResolveTree ()
+               // This is invoked after all interfaces, structs and classes
+               // have been defined through `ResolveTree' 
+               static public void PopulateTypes ()
                {
-                       Hashtable ifaces, classes, structs;
+                       TypeContainer root = Tree.Types;
+
+                       if (interface_resolve_order != null){
+                               foreach (Interface iface in interface_resolve_order)
+                                       if ((iface.ModFlags & Modifiers.NEW) == 0)
+                                               iface.Define (root);
+                                       else
+                                               Report1530 (iface.Location);
+                       }
 
-                       //
-                       // Interfaces are processed first, as classes and
-                       // structs might inherit from an object or implement
-                       // a set of interfaces, we need to be able to tell
-                       // them appart by just using the TypeManager.
-                       //
-                       ifaces = tree.Interfaces;
-                       if (ifaces != null){
-                               foreach (DictionaryEntry de in ifaces)
-                                       CreateInterface ((Interface) de.Value);
+
+                       if (type_container_resolve_order != null){
+                               foreach (TypeContainer tc in type_container_resolve_order)
+                                       if ((tc.ModFlags & Modifiers.NEW) == 0)
+                                               tc.Define (root);
+                                       else
+                                               Report1530 (tc.Location);
                        }
 
-                       //
-                       // Process structs and classes next.  Our code assumes
-                       // this order (just for error reporting purposes).
-                       //
-                       structs = tree.Structs;
-                       if (structs != null){
-                               foreach (DictionaryEntry de in structs)
-                                       CreateType ((Struct) de.Value, false);
+                       ArrayList delegates = root.Delegates;
+                       if (delegates != null){
+                               foreach (Delegate d in delegates)
+                                       if ((d.ModFlags & Modifiers.NEW) == 0)
+                                               d.Define (root);
+                                       else
+                                               Report1530 (d.Location);
                        }
 
-                       classes = tree.Classes;
-                       if (classes != null){
-                               foreach (DictionaryEntry de in classes)
-                                       CreateType ((Class) de.Value, true);
+                       ArrayList enums = root.Enums;
+                       if (enums != null){
+                               foreach (Enum en in enums)
+                                       if ((en.ModFlags & Modifiers.NEW) == 0)
+                                               en.Define (root);
+                                       else
+                                               Report1530 (en.Location);
                        }
                }
-                       
-               // <summary>
-               //   Closes all open types
-               // </summary>
-               //
-               // <remarks>
-               //   We usually use TypeBuilder types.  When we are done
-               //   creating the type (which will happen after we have addded
-               //   methods, fields, etc) we need to "Define" them before we
-               //   can save the Assembly
-               // </remarks>
-               public void CloseTypes ()
+
+               static public void EmitCode ()
                {
-                       foreach (TypeBuilder t in type_manager.UserTypes){
-                               t.CreateType ();
+                       if (type_container_resolve_order != null){
+                               foreach (TypeContainer tc in type_container_resolve_order)
+                                       tc.EmitConstants ();
+                               
+                               foreach (TypeContainer tc in type_container_resolve_order)
+                                       tc.Emit ();
                        }
                }
-
-               // <summary>
-               //   Compiling against Standard Libraries property.
-               // </summary>
-               public bool StdLib {
+               
+               static public ModuleBuilder ModuleBuilder {
                        get {
-                               return stdlib;
-                       }
-
-                       set {
-                               stdlib = value;
+                               return mb;
                        }
                }
 
-               public Report Report {
-                       get {
-                               return report;
-                       }
+               //
+               // Public Field, used to track which method is the public entry
+               // point.
+               //
+               static public MethodInfo EntryPoint;
+
+               //
+               // These are used to generate unique names on the structs and fields.
+               //
+               static int field_count;
+               
+               //
+               // Makes an initialized struct, returns the field builder that
+               // references the data.  Thanks go to Sergey Chaban for researching
+               // how to do this.  And coming up with a shorter mechanism than I
+               // was able to figure out.
+               //
+               // This works but makes an implicit public struct $ArrayType$SIZE and
+               // makes the fields point to it.  We could get more control if we did
+               // use instead:
+               //
+               // 1. DefineNestedType on the impl_details_class with our struct.
+               //
+               // 2. Define the field on the impl_details_class
+               //
+               static public FieldBuilder MakeStaticData (byte [] data)
+               {
+                       FieldBuilder fb;
+                       int size = data.Length;
+                       
+                       if (impl_details_class == null)
+                               impl_details_class = mb.DefineType (
+                                       "<PrivateImplementationDetails>", TypeAttributes.NotPublic);
+
+                       fb = impl_details_class.DefineInitializedData (
+                               "$$field-" + (field_count++), data,
+                               FieldAttributes.Static | FieldAttributes.Assembly);
+                       
+                       return fb;
                }
        }
 }
              
+